:root {
  --bg: #f5efe2;
  --surface: #fffaf1;
  --text: #19313f;
  --muted: #4d6675;
  --brand: #0b3a53;
  --brand-2: #2e8b8b;
  --accent: #c79f58;
  --border: #e3d8c2;
  --shadow: 0 10px 30px rgba(11, 58, 83, .12);
  --radius: 14px;
  --display: "Fraunces", "Source Sans 3", serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
body::before {
  width: 55vw;
  height: 55vw;
  min-width: 320px;
  min-height: 320px;
  right: -18vw;
  top: -16vw;
  background: radial-gradient(circle, rgba(46,139,139,.22) 0%, rgba(46,139,139,0) 68%);
  animation: driftOne 22s ease-in-out infinite;
}
body::after {
  width: 44vw;
  height: 44vw;
  min-width: 280px;
  min-height: 280px;
  left: -16vw;
  bottom: -20vw;
  background: radial-gradient(circle, rgba(11,58,83,.16) 0%, rgba(11,58,83,0) 70%);
  animation: driftTwo 26s ease-in-out infinite;
}
@keyframes driftOne {
  0%,100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(18px) translateX(-10px) scale(1.05); }
}
@keyframes driftTwo {
  0%,100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-20px) translateX(14px) scale(1.06); }
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, 92vw); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--surface) 86%, white 14%);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; }
.article-page .nav-wrap { padding: .52rem 0; }
.brand { font-weight: 700; letter-spacing: .03em; display: flex; align-items: center; gap: .5rem; }
.brand-logo {
  width: clamp(150px, 17vw, 190px);
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(11, 58, 83, .12));
}
.brand-badge { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg,var(--brand),var(--brand-2)); }
.article-page .brand { font-size: .98rem; }
.article-page .brand-badge { width: 22px; height: 22px; border-radius: 6px; }
.article-page .brand-logo { width: clamp(136px, 16vw, 168px); }
.nav-links { display: flex; gap: 1rem; align-items: center; }
.mega-nav {
  position: relative;
  gap: .45rem;
}
.nav-link,
.mega-menu > summary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .45rem .7rem;
  border-radius: 999px;
  color: #173848;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.mega-menu > summary::-webkit-details-marker { display: none; }
.mega-menu > summary::after {
  content: "";
  width: .42rem;
  height: .42rem;
  margin-left: .42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}
.mega-menu[open] > summary::after,
.mega-menu:hover > summary::after {
  transform: translateY(1px) rotate(225deg);
}
.nav-link:hover,
.mega-menu > summary:hover,
.nav-link[aria-current="page"],
.mega-menu > summary[aria-current="page"] {
  color: #0b3a53;
  background: #eef7f6;
  text-decoration: none;
}
.mega-menu {
  position: relative;
}
.mega-panel {
  position: absolute;
  top: calc(100% + .8rem);
  right: 0;
  width: min(920px, 92vw);
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(227, 216, 194, .96);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(46,139,139,.14), transparent 28%),
    rgba(255, 250, 241, .98);
  box-shadow: 0 24px 70px rgba(11, 58, 83, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 90;
}
.mega-menu[open] .mega-panel,
.mega-menu:hover .mega-panel,
.mega-menu:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-panel--articles {
  width: min(720px, 92vw);
  grid-template-columns: 1fr;
}
.mega-panel__intro {
  padding: 1rem;
  border-radius: 18px;
  color: #fff8e8;
  background: linear-gradient(135deg, #0b3a53, #216e72);
}
.mega-panel__intro span {
  display: inline-block;
  margin-bottom: .6rem;
  color: #f3d895;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mega-panel__intro strong {
  display: block;
  margin-bottom: .9rem;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.05;
}
.mega-panel__intro a {
  display: inline-flex;
  color: #0b3a53;
  background: #f3d895;
  border-radius: 999px;
  padding: .48rem .7rem;
  font-weight: 800;
}
.mega-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}
.mega-panel--articles .mega-panel__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mega-panel section {
  min-width: 0;
  padding: .75rem;
  border-radius: 16px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(227,216,194,.72);
}
.mega-panel h3 {
  margin: 0 0 .55rem;
  color: #0b3a53;
  font-size: .92rem;
  line-height: 1.25;
}
.mega-panel section a {
  display: block;
  padding: .34rem 0;
  color: #345466;
  font-size: .93rem;
  line-height: 1.28;
}
.mega-panel section a:hover {
  color: #0b3a53;
}
.cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
}
.hero { padding: 2rem 0 1.2rem; }
.hero-card {
  color: #f8f4eb;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(243, 239, 230, .18);
}
.hero-media {
  position: relative;
  min-height: 98px;
  background: linear-gradient(120deg, rgba(11,58,83,.9), rgba(46,139,139,.78));
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
  mix-blend-mode: soft-light;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  padding: clamp(1.2rem, 4vw, 2.2rem);
  display: grid;
  align-content: end;
  background: linear-gradient(180deg, rgba(8,32,45,.08) 0%, rgba(8,32,45,.82) 76%);
}
.hero h1 { margin: .45rem 0 .6rem; line-height: 1.2; font-size: clamp(1.4rem, 3vw, 2.1rem); }
.meta { color: #e9dfcb; font-size: .95rem; }
.home-page .hero-media {
  min-height: 260px;
  background: linear-gradient(120deg, rgba(12,48,66,.82), rgba(37,118,112,.64));
}
.home-page .hero-media img {
  min-height: 260px;
  mix-blend-mode: normal;
}
.home-page .hero-overlay {
  background:
    linear-gradient(180deg, rgba(8,32,45,.08) 0%, rgba(8,32,45,.78) 75%),
    radial-gradient(circle at top right, rgba(245,214,156,.22), transparent 42%);
}
.home-page .hero h1 {
  font-size: clamp(1.55rem, 3.6vw, 2.4rem);
  max-width: 16ch;
}
.home-page .hero .meta {
  max-width: 58ch;
}
.home-services .box {
  background: linear-gradient(180deg, #fffdf7 0%, #fff8ec 100%);
}
.home-location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.home-location-pills span {
  display: inline-block;
  border: 1px solid #d8c9ae;
  background: #fff8ea;
  border-radius: 999px;
  padding: .28rem .7rem;
  font-size: .9rem;
  color: #4d6675;
}
.home-page {
  background:
    linear-gradient(180deg, #f6eddb 0%, #f8f2e7 38%, #efe4d1 100%);
}
.home-page .site-header {
  background: rgba(255, 250, 241, .82);
  box-shadow: 0 10px 30px rgba(11, 58, 83, .08);
}
.home-page .nav-links a {
  font-weight: 700;
  color: #173848;
}
.home-page h1,
.home-page h2 {
  font-family: var(--display);
  letter-spacing: -.035em;
}
.home-page main {
  position: relative;
  z-index: 1;
}
.home-motion-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.home-motion-bg span {
  position: absolute;
  display: block;
  will-change: transform;
}
.home-motion-bg__orb {
  border-radius: 999px;
  opacity: .58;
  filter: blur(.2px);
  mix-blend-mode: multiply;
  animation: homeBgOrbit 18s ease-in-out infinite alternate;
}
.home-motion-bg__orb--one {
  top: 18%;
  left: -5%;
  width: clamp(180px, 24vw, 360px);
  height: clamp(180px, 24vw, 360px);
  background: radial-gradient(circle, rgba(46,139,139,.2), rgba(46,139,139,.08) 46%, transparent 68%);
}
.home-motion-bg__orb--two {
  top: 42%;
  right: -7%;
  width: clamp(220px, 28vw, 430px);
  height: clamp(220px, 28vw, 430px);
  background: radial-gradient(circle, rgba(199,159,88,.24), rgba(199,159,88,.1) 48%, transparent 70%);
  animation-delay: -5s;
}
.home-motion-bg__orb--three {
  left: 22%;
  bottom: -12%;
  width: clamp(190px, 25vw, 380px);
  height: clamp(190px, 25vw, 380px);
  background: radial-gradient(circle, rgba(11,58,83,.16), rgba(11,58,83,.07) 48%, transparent 72%);
  animation-delay: -9s;
}
.home-motion-bg__line {
  width: min(42vw, 520px);
  height: 1px;
  opacity: .42;
  background: linear-gradient(90deg, transparent, rgba(11,58,83,.24), rgba(199,159,88,.32), transparent);
  animation: homeLineDrift 14s ease-in-out infinite alternate;
}
.home-motion-bg__line--one {
  top: 31%;
  left: 8%;
  transform: rotate(-14deg);
}
.home-motion-bg__line--two {
  right: 12%;
  bottom: 22%;
  transform: rotate(12deg);
  animation-delay: -6s;
}
.home-kicker {
  margin: 0 0 .7rem;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.home-hero {
  position: relative;
  min-height: clamp(520px, 82vh, 740px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: #fffaf1;
  background: #0b3144;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 18%, rgba(199, 159, 88, .34), transparent 28%),
    radial-gradient(circle at 16% 78%, rgba(46, 139, 139, .42), transparent 32%),
    linear-gradient(90deg, rgba(6, 24, 33, .92) 0%, rgba(8, 35, 48, .82) 38%, rgba(8, 35, 48, .48) 66%, rgba(8, 35, 48, .72) 100%);
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 39%, rgba(255, 250, 241, .12) 48%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 92px);
  opacity: .36;
  animation: homeLightSweep 10s ease-in-out infinite alternate;
}
.home-hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
  animation: homeHeroDrift 18s ease-in-out infinite alternate;
}
.home-hero__texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.8) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.62) 0 1px, transparent 1px);
  background-size: 42px 42px, 58px 58px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}
.home-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: end;
  gap: clamp(1.2rem, 5vw, 4rem);
  padding: clamp(5.2rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 5.8rem);
}
.home-hero__copy {
  max-width: 760px;
  animation: homeFadeUp .8s ease-out both;
}
.home-hero .home-kicker {
  color: #f0c978;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .28);
}
.home-hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.6rem, 10vw, 8.2rem);
  line-height: .88;
  color: #fff8e8;
  text-wrap: balance;
  text-shadow: 0 16px 42px rgba(0, 0, 0, .32);
}
.home-hero__lead {
  max-width: 690px;
  margin: 1.3rem 0 0;
  color: rgba(255, 250, 241, .9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .78rem 1.08rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.home-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.home-button--primary {
  color: #102f3e;
  background: linear-gradient(135deg, #f7d88f, #fff1c8);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}
.home-button--ghost {
  color: #fff8e8;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.home-intel-card {
  padding: 1.2rem;
  border: 1px solid rgba(255, 250, 241, .24);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,250,241,.18), rgba(255,250,241,.08));
  box-shadow: 0 24px 54px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  animation: homeFloatCard .9s ease-out .18s both;
}
.home-intel-card__label {
  display: inline-block;
  margin-bottom: .6rem;
  color: #173848;
  background: #fff1c8;
  border-radius: 999px;
  padding: .22rem .58rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-intel-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
  color: #fff8e8;
}
.home-intel-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.home-intel-card li {
  position: relative;
  padding: .62rem 0 .62rem 1.45rem;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,250,241,.88);
  line-height: 1.45;
}
.home-intel-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: .52rem;
  height: .52rem;
  border-radius: 50%;
  background: #f0c978;
  box-shadow: 0 0 0 5px rgba(240, 201, 120, .18);
}
.home-proof {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  padding-bottom: clamp(2.6rem, 6vw, 4.8rem);
}
.home-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(227, 216, 194, .92);
  border-radius: 24px;
  background: rgba(255, 250, 241, .94);
  box-shadow: 0 22px 60px rgba(11, 58, 83, .16);
  backdrop-filter: blur(14px);
}
.home-proof article {
  padding: clamp(1rem, 2vw, 1.35rem);
  border-left: 1px solid #eadfcb;
}
.home-proof article:first-child {
  border-left: 0;
}
.home-proof span,
.home-service-card span,
.home-timeline span,
.home-article-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: .65rem;
  border-radius: 50%;
  color: #0b3a53;
  background: #f3d895;
  font-size: .78rem;
  font-weight: 800;
}
.home-proof strong {
  display: block;
  color: #0b3a53;
  font-size: 1.02rem;
}
.home-proof p {
  margin: .35rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}
.home-section,
.home-articles,
.home-faq {
  padding: clamp(3.4rem, 7vw, 5.8rem) 0;
}
.home-services-section {
  padding-top: 0;
}
.home-section__heading {
  max-width: 780px;
  margin-bottom: clamp(1.4rem, 4vw, 2.4rem);
}
.home-section__heading h2,
.home-method h2,
.home-area h2 {
  margin: 0;
  color: #123344;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  text-wrap: balance;
}
.home-section__heading p:not(.home-kicker),
.home-method__copy p,
.home-area p {
  color: var(--muted);
  font-size: 1.03rem;
}
.home-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .88rem;
}
.home-service-card {
  min-height: 236px;
  border: 1px solid rgba(227, 216, 194, .94);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,248,234,.94)),
    radial-gradient(circle at 100% 0, rgba(46,139,139,.16), transparent 38%);
  box-shadow: 0 14px 34px rgba(11, 58, 83, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  animation: homeFadeUp .7s ease-out both;
}
.home-service-card:nth-child(2) { animation-delay: .04s; }
.home-service-card:nth-child(3) { animation-delay: .08s; }
.home-service-card:nth-child(4) { animation-delay: .12s; }
.home-service-card:nth-child(5) { animation-delay: .16s; }
.home-service-card:nth-child(n+6) { animation-delay: .2s; }
.home-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 139, 139, .45);
  box-shadow: 0 22px 48px rgba(11, 58, 83, .14);
}
.home-service-card a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.05rem;
  color: inherit;
}
.home-service-card a:hover {
  text-decoration: none;
}
.home-service-card h3 {
  margin: 0 0 .55rem;
  color: #103245;
  font-size: 1.08rem;
  line-height: 1.18;
}
.home-service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.home-method {
  position: relative;
  overflow: hidden;
  padding: clamp(3.8rem, 8vw, 6.4rem) 0;
  color: #fff8e8;
  background:
    radial-gradient(circle at 78% 18%, rgba(199,159,88,.28), transparent 30%),
    linear-gradient(135deg, #092b3b 0%, #0e4755 48%, #0b2d3a 100%);
}
.home-method::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 86px 86px;
  transform: rotate(-4deg) scale(1.12);
}
.home-method__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  gap: clamp(1.5rem, 6vw, 4.5rem);
  align-items: start;
}
.home-method h2 {
  color: #fff8e8;
}
.home-method__copy p {
  max-width: 56ch;
  color: rgba(255, 250, 241, .78);
}
.home-text-link {
  display: inline-flex;
  margin-top: .8rem;
  color: #f3d895;
  font-weight: 800;
}
.home-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.home-timeline li {
  position: relative;
  padding: 1.05rem 1.05rem 1.05rem 4.3rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}
.home-timeline span {
  position: absolute;
  left: 1.05rem;
  top: 1.1rem;
  margin: 0;
}
.home-timeline strong {
  display: block;
  color: #fff8e8;
  font-size: 1.04rem;
}
.home-timeline p {
  margin: .28rem 0 0;
  color: rgba(255,250,241,.78);
  line-height: 1.5;
}
.home-area {
  padding: clamp(3.8rem, 8vw, 6.4rem) 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(46,139,139,.14), transparent 28%),
    linear-gradient(180deg, #f8f2e7, #efe4d1);
}
.home-area__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .78fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
}
.home-area__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfd0b8;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(11, 58, 83, .16);
}
.home-area__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .45s ease;
}
.home-area__photo:hover img {
  transform: scale(1.035);
}
.home-area__photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: .8rem .9rem;
  color: #fff8e8;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(7, 28, 38, .66);
  backdrop-filter: blur(12px);
  line-height: 1.35;
}
.home-area .home-location-pills {
  margin-top: 1.2rem;
}
.home-area .home-location-pills span {
  border-color: rgba(11, 58, 83, .18);
  background: rgba(255, 250, 241, .8);
  color: #19313f;
  font-weight: 700;
}
.home-articles {
  background:
    linear-gradient(180deg, rgba(255,250,241,.62), rgba(255,250,241,.9)),
    radial-gradient(circle at 90% 10%, rgba(199,159,88,.16), transparent 28%);
}
.home-article-grid,
.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .95rem;
}
.home-article-grid article,
.home-faq-grid article {
  border: 1px solid #e2d4bd;
  border-radius: 24px;
  background: #fffaf1;
  box-shadow: 0 14px 34px rgba(11, 58, 83, .08);
}
.home-article-grid a {
  display: block;
  min-height: 100%;
  padding: 1.15rem;
  color: inherit;
}
.home-article-grid a:hover {
  text-decoration: none;
}
.home-article-grid span {
  width: auto;
  min-width: 2.2rem;
  height: 1.7rem;
  padding: 0 .62rem;
  border-radius: 999px;
}
.home-article-grid h3,
.home-faq-grid h3 {
  margin: .25rem 0 .5rem;
  color: #103245;
  line-height: 1.2;
}
.home-article-grid p,
.home-faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.home-faq {
  background:
    radial-gradient(circle at 12% 80%, rgba(46,139,139,.12), transparent 30%),
    #f5efe2;
}
.home-faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-faq-grid article {
  padding: 1.1rem;
}
.home-page .footer {
  color: rgba(255, 250, 241, .86);
  border-top: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(199,159,88,.22), transparent 28%),
    linear-gradient(135deg, #082a3a, #0b3a53 52%, #092632);
}
.home-page .footer strong,
.home-page .footer h3 {
  color: #fff8e8;
}
.home-page .footer a {
  color: #f3d895;
}
.home-page .footer .footer-wa-link {
  color: #0b3a53;
}
.home-page .footer .footer-link-grid a,
.home-page .footer .footer-link-grid span {
  color: #4d6675;
}
.home-page .footer .small {
  color: rgba(255, 250, 241, .78);
}
.home-page .footer-copyline {
  border-top-color: rgba(255,255,255,.16);
}
@keyframes homeHeroDrift {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1.4%, -1%, 0); }
}
@keyframes homeLightSweep {
  0% { transform: translateX(-4%); opacity: .22; }
  100% { transform: translateX(4%); opacity: .42; }
}
@keyframes homeFadeUp {
  0% { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes homeFloatCard {
  0% { transform: translateY(22px) scale(.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes homeBgOrbit {
  0% { margin: 0; }
  100% { margin: -18px 0 0 22px; }
}
@keyframes homeLineDrift {
  0% { opacity: .2; margin-left: -18px; }
  100% { opacity: .52; margin-left: 28px; }
}
.home-proof article,
.home-method__copy,
.home-timeline li,
.home-area__grid > *,
.home-article-grid article,
.home-faq-grid article {
  animation: homeFadeUp .75s ease-out both;
}
.home-proof article:nth-child(2),
.home-timeline li:nth-child(2),
.home-article-grid article:nth-child(2),
.home-faq-grid article:nth-child(2) { animation-delay: .08s; }
.home-proof article:nth-child(3),
.home-timeline li:nth-child(3),
.home-article-grid article:nth-child(3),
.home-faq-grid article:nth-child(3) { animation-delay: .16s; }
.home-proof article:nth-child(4),
.home-timeline li:nth-child(4),
.home-faq-grid article:nth-child(4) { animation-delay: .24s; }
.home-method__copy {
  animation-delay: .05s;
}
.home-area__photo {
  animation-delay: .12s;
}
.home-section__heading {
  animation: homeFadeUp .75s ease-out both;
}
.home-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.5) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity .2s ease;
  pointer-events: none;
}
.home-service-card {
  position: relative;
  overflow: hidden;
}
.home-service-card:hover::after {
  opacity: .45;
  animation: cardGlint .95s ease-out;
}
.has-scroll-animations .scroll-reveal {
  opacity: 0;
  filter: blur(7px);
  animation: none;
  transform: translate3d(0, 34px, 0) scale(.985);
  transition:
    opacity .74s ease,
    filter .74s ease,
    transform .74s cubic-bezier(.2, .82, .18, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.has-scroll-animations .scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.has-scroll-animations .home-service-card.scroll-reveal:nth-child(odd) {
  transform: translate3d(-18px, 34px, 0) rotate(-.8deg) scale(.985);
}
.has-scroll-animations .home-service-card.scroll-reveal:nth-child(even) {
  transform: translate3d(18px, 34px, 0) rotate(.8deg) scale(.985);
}
.has-scroll-animations .home-service-card.scroll-reveal.is-visible {
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}
.has-scroll-animations .home-service-card.scroll-reveal.is-visible:hover {
  transform: translateY(-6px);
}
.has-scroll-animations .home-timeline li.scroll-reveal {
  transform: translate3d(30px, 18px, 0) scale(.985);
}
.has-scroll-animations .home-timeline li.scroll-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}
.has-scroll-animations .home-area__photo.scroll-reveal {
  transform: translate3d(30px, 0, 0) rotate(1.4deg) scale(.985);
}
.has-scroll-animations .home-area__photo.scroll-reveal.is-visible {
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}
.has-scroll-animations .home-article-grid article.scroll-reveal,
.has-scroll-animations .home-faq-grid article.scroll-reveal {
  transform: translate3d(0, 28px, 0) rotate(.5deg) scale(.985);
}
.has-scroll-animations .home-article-grid article.scroll-reveal.is-visible,
.has-scroll-animations .home-faq-grid article.scroll-reveal.is-visible {
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}
@keyframes cardGlint {
  0% { transform: translateX(-60%); }
  100% { transform: translateX(65%); }
}
.directory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem 0 2.6rem;
}
.directory-main {
  min-width: 0;
}
.directory-intro {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid rgba(227,216,194,.94);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 12%, rgba(46,139,139,.16), transparent 30%),
    linear-gradient(180deg, rgba(255,250,241,.96), rgba(255,248,234,.82));
  box-shadow: 0 18px 44px rgba(11,58,83,.1);
}
.directory-intro::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(199,159,88,.28);
  border-radius: 50%;
}
.directory-intro h2 {
  margin: .5rem 0 .55rem;
  font-family: var(--display);
  color: #123344;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.directory-intro p {
  max-width: 78ch;
  margin: 0;
  color: var(--muted);
}
.directory-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0 0 1rem;
}
.directory-topic-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .38rem .68rem;
  border: 1px solid rgba(11,58,83,.14);
  border-radius: 999px;
  background: rgba(255,250,241,.84);
  color: #173848;
  font-weight: 800;
  font-size: .92rem;
}
.directory-topic-strip a:hover {
  text-decoration: none;
  border-color: rgba(46,139,139,.45);
  background: #eef7f6;
}
.directory-featured,
.directory-card-grid {
  display: grid;
  gap: .85rem;
}
.directory-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}
.directory-feature-card,
.directory-card,
.directory-side-card {
  border: 1px solid rgba(227,216,194,.94);
  border-radius: 22px;
  background: #fffaf1;
  box-shadow: 0 14px 34px rgba(11,58,83,.08);
}
.directory-feature-card a,
.directory-card a {
  display: block;
  min-height: 100%;
  padding: 1rem;
  color: inherit;
}
.directory-feature-card a:hover,
.directory-card a:hover {
  text-decoration: none;
}
.directory-feature-card {
  background:
    radial-gradient(circle at 100% 0, rgba(46,139,139,.12), transparent 34%),
    #fffaf1;
  transition: transform .18s ease, box-shadow .18s ease;
}
.directory-feature-card:hover,
.directory-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(11,58,83,.13);
}
.directory-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: .7rem;
  border-radius: 50%;
  background: #f3d895;
  color: #0b3a53;
  font-weight: 900;
  font-size: .78rem;
}
.directory-feature-card h3,
.directory-card h3 {
  margin: 0 0 .45rem;
  color: #103245;
  line-height: 1.18;
}
.directory-feature-card p,
.directory-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}
.directory-list {
  margin-top: 1.2rem;
}
.directory-list h2 {
  margin: 0 0 .9rem;
  font-family: var(--display);
  color: #123344;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.05;
}
.directory-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.directory-card-grid--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.directory-card {
  transition: transform .18s ease, box-shadow .18s ease;
}
.directory-sidebar {
  display: grid;
  gap: .85rem;
  align-content: start;
}
.directory-side-card {
  padding: 1rem;
}
.directory-side-card--dark {
  color: #fff8e8;
  background:
    radial-gradient(circle at 88% 12%, rgba(243,216,149,.22), transparent 28%),
    linear-gradient(135deg, #082a3a, #0b3a53);
}
.directory-side-card h2 {
  margin: 0 0 .55rem;
  color: inherit;
  font-family: var(--display);
  line-height: 1.05;
}
.directory-side-card p,
.directory-side-card li {
  color: var(--muted);
  line-height: 1.45;
}
.directory-side-card--dark p {
  color: rgba(255,250,241,.78);
}
.directory-side-card a {
  display: block;
  margin-top: .5rem;
  color: #0b3a53;
  font-weight: 800;
}
.directory-side-card--dark a {
  display: inline-flex;
  padding: .5rem .7rem;
  border-radius: 999px;
  background: #f3d895;
}
.directory-side-card ul {
  margin: .4rem 0 0;
  padding-left: 1.1rem;
}
.directory-faq {
  margin-top: 1.6rem;
}
@media (max-width: 1120px) {
  .home-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
  .home-hero {
    min-height: auto;
  }
  .home-hero__content,
  .home-method__grid,
  .home-area__grid {
    grid-template-columns: 1fr;
  }
  .home-hero__content {
    padding: 5rem 0 3.2rem;
  }
  .home-hero h1 {
    max-width: 9ch;
    font-size: clamp(3.15rem, 14vw, 6.4rem);
  }
  .home-intel-card {
    max-width: 620px;
  }
  .home-proof {
    margin-top: 0;
    padding-top: 1rem;
  }
  .home-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-proof article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #eadfcb;
  }
  .home-proof article:nth-child(4) {
    border-top: 1px solid #eadfcb;
  }
  .home-article-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .home-hero::before {
    background:
      radial-gradient(circle at 74% 12%, rgba(199, 159, 88, .28), transparent 32%),
      linear-gradient(180deg, rgba(6, 24, 33, .78) 0%, rgba(8, 35, 48, .86) 52%, rgba(8, 35, 48, .94) 100%);
  }
  .home-hero__content {
    padding: 4.2rem 0 2.2rem;
  }
  .home-hero__lead {
    font-size: 1rem;
  }
  .home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-button {
    width: 100%;
  }
  .home-intel-card {
    border-radius: 22px;
    padding: 1rem;
  }
  .home-proof__grid,
  .home-service-grid,
  .home-faq-grid {
    grid-template-columns: 1fr;
  }
  .home-proof article,
  .home-proof article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid #eadfcb;
  }
  .home-proof article:first-child {
    border-top: 0;
  }
  .home-service-card {
    min-height: auto;
  }
  .home-section,
  .home-articles,
  .home-faq,
  .home-area,
  .home-method {
    padding-block: 3rem;
  }
  .home-area__photo img {
    aspect-ratio: 16 / 11;
  }
  .home-area__photo figcaption {
    position: static;
    border-radius: 0;
    border: 0;
    background: #0b3a53;
  }
}
.main-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; padding: 1.2rem 0 2rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article { padding: 1.2rem; }
.article h2 { margin-top: 1.5rem; line-height: 1.3; }
.article h3 { margin-top: 1.2rem; }
.lead { font-size: 1.05rem; color: var(--muted); }
.quick-stats {
  margin: 1rem 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .65rem;
}
.quick-stats .stat {
  background: #f2f8f7;
  border: 1px solid #d8ebe8;
  border-radius: 10px;
  padding: .65rem .7rem;
  font-size: .9rem;
}
.quick-stats strong { display: block; color: var(--brand); font-size: 1rem; }
.checklist {
  margin: .5rem 0 0;
  padding-left: 1.1rem;
}
.callout {
  margin: 1rem 0;
  padding: .9rem 1rem;
  border-left: 4px solid var(--accent);
  background: #fff5e7;
  border-radius: 8px;
}
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: .8rem;
  margin: 1rem 0;
}
.compare .box {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .8rem;
  background: #fff;
}
.toc {
  margin-top: 1rem;
  padding: .9rem;
  border-radius: 10px;
  background: #eef7f6;
  border: 1px solid #d7ebea;
}
.toc h3 { margin: 0 0 .45rem; }
.toc ol { margin: 0; padding-left: 1.1rem; }
.sidebar { padding: 1rem; }
.sidebar h3 { margin: .2rem 0 .4rem; }
.side-list { list-style: none; padding: 0; margin: 0; }
.side-list li { border-top: 1px dashed var(--border); padding: .7rem 0; }
.side-list li:first-child { border-top: 0; }
.widget {
  margin-top: 1rem;
  padding: .85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.faq-block { margin-top: 1.8rem; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .8rem;
}
.card-lite {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: .85rem;
}
.card-lite h3 {
  margin: 0 0 .35rem;
  line-height: 1.3;
}
.badge {
  display: inline-block;
  background: #eaf5f3;
  color: #0a5760;
  font-size: .82rem;
  padding: .25rem .5rem;
  border-radius: 999px;
}
.footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #f2eadb 0%, #ebdfcb 100%);
  padding: 1.3rem 0 2rem;
}
.footer-shell {
  display: grid;
  gap: 1rem;
}
.footer-brand-card {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: 24px;
  color: #fff8e8;
  background:
    radial-gradient(circle at 88% 18%, rgba(243,216,149,.24), transparent 28%),
    linear-gradient(135deg, #082a3a, #0b3a53 58%, #0b2d35);
  box-shadow: 0 18px 48px rgba(11, 58, 83, .16);
}
.footer-brand-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.footer-brand-card strong {
  display: block;
  color: #fff8e8;
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1;
}
.footer-logo {
  width: min(220px, 82vw);
  height: auto;
  margin-bottom: .8rem;
  padding: .45rem .55rem;
  border-radius: 18px;
  background: rgba(255, 250, 241, .94);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.footer-brand-card span {
  display: inline-block;
  margin-top: .35rem;
  color: #f3d895;
  font-weight: 800;
}
.footer-brand-card p {
  max-width: 70ch;
  margin: .7rem 0 .95rem;
  color: rgba(255,250,241,.82);
}
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .58rem .82rem;
  color: #0b3a53;
  background: #f3d895;
  font-weight: 800;
}
.footer-wa-link:hover {
  text-decoration: none;
  background: #fff1c8;
}
.footer-link-grid {
  display: grid;
  gap: .75rem;
}
.footer-link-grid section {
  padding: .95rem;
  border: 1px solid #dacbb1;
  border-radius: 18px;
  background: rgba(255, 250, 241, .72);
}
.footer-link-grid h3 {
  margin: 0 0 .55rem;
  color: #0b3a53;
  font-size: .98rem;
}
.footer-link-grid a,
.footer-link-grid span {
  display: block;
  margin-top: .35rem;
  color: #4d6675;
  font-size: .94rem;
  line-height: 1.35;
}
.footer-grid { display: grid; gap: 1rem; }
.footer-grid-rich h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
}
.footer-copyline {
  padding-top: .7rem;
  border-top: 1px dashed #d8c9ae;
  color: var(--muted);
}
.wa-bubble {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
  z-index: 120;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-bubble:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}
.wa-bubble__icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  line-height: 0;
}
.wa-bubble__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, .42);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .75; }
  70% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
.small { color: var(--muted); font-size: .93rem; }
@media (min-width: 920px) {
  .main-grid { grid-template-columns: minmax(0,1fr) 320px; }
  .directory-layout { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
  .directory-sidebar { position: sticky; top: 86px; }
  .article { padding: 1.6rem; }
  .sidebar { position: sticky; top: 86px; height: fit-content; }
  .compare { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .faq-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-shell { grid-template-columns: .9fr 1.35fr; align-items: stretch; }
  .footer-brand-card { min-height: 100%; }
  .footer-link-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid-rich { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .footer-copyline { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-wrap { align-items: flex-start; }
  .mega-nav {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: .15rem;
  }
  .nav-links a:not(.cta),
  .mega-nav .nav-link { display: inline-flex; }
  .nav-link,
  .mega-menu > summary {
    min-height: 34px;
    padding: .36rem .55rem;
    white-space: nowrap;
    font-size: .92rem;
  }
  .mega-panel,
  .mega-panel--articles {
    position: fixed;
    left: 4vw;
    right: 4vw;
    top: 62px;
    width: auto;
    max-height: calc(100vh - 86px);
    overflow: auto;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .mega-panel__grid,
  .mega-panel--articles .mega-panel__grid {
    grid-template-columns: 1fr;
  }
  .hero-media, .hero-media img { min-height: 80px; }
  .home-page .hero-media,
  .home-page .hero-media img { min-height: 220px; }
  .wa-bubble {
    width: 54px;
    height: 54px;
    right: 12px;
    bottom: 14px;
  }
  .brand-logo { width: 138px; }
  .directory-featured,
  .directory-card-grid,
  .directory-card-grid--services {
    grid-template-columns: 1fr;
  }
  .directory-layout {
    padding-top: .8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
  .wa-bubble__pulse { animation: none; }
  .wa-bubble { transition: none; }
  .home-hero::after,
  .home-hero__image img,
  .home-hero__copy,
  .home-intel-card,
  .home-motion-bg__orb,
  .home-motion-bg__line,
  .home-service-card,
  .home-proof article,
  .home-method__copy,
  .home-timeline li,
  .home-area__grid > *,
  .home-article-grid article,
  .home-faq-grid article,
  .home-section__heading {
    animation: none;
  }
  .home-service-card:hover::after { animation: none; }
  .home-motion-bg span {
    transform: none !important;
  }
  .has-scroll-animations .scroll-reveal,
  .has-scroll-animations .home-service-card.scroll-reveal:nth-child(odd),
  .has-scroll-animations .home-service-card.scroll-reveal:nth-child(even),
  .has-scroll-animations .home-timeline li.scroll-reveal,
  .has-scroll-animations .home-area__photo.scroll-reveal,
  .has-scroll-animations .home-article-grid article.scroll-reveal,
  .has-scroll-animations .home-faq-grid article.scroll-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
  .home-button,
  .home-service-card,
  .home-area__photo img,
  .directory-feature-card,
  .directory-card {
    transition: none;
  }
}
