/* Shared inner-page design system */
@property --gang {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false
}

:root {
  --cream: #f5f1ea;
  --cream-2: #efe8dc;
  --card: #fff;
  --navy: #242349;
  --navy-soft: #3a3a63;
  --dark: #0c0c11;
  --line: #e6e0d3;
  --line-dark: #20202e;
  --copper: #c89078;
  --copper-lite: #d9a88f;
  --copper-glow: #eccbb6;
  --grey: #9a9aa5;
  --grey-2: #6b6b78;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Poppins', system-ui, sans-serif;
  --wrap: 1160px;
  --logo: url("../img/logo.webp");
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 30px
}

.kicker {
  font-size: .74rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 16px
}

.sec {
  padding: 88px 0
}

.lead {
  color: var(--grey-2);
  font-size: 1.06rem;
  max-width: 640px
}

@keyframes gspin {
  to {
    --gang: 360deg
  }
}

.gline-sm {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-glow));
  border-radius: 3px
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  padding: 12px 13px 12px 24px;
  border-radius: 40px;
  border: 0;
  cursor: pointer;
  transition: .25s
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-2px)
}

.btn-dark .circ {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  font-size: .92rem;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: .25s
}

.btn-navy:hover {
  background: #1a1a3c;
  transform: translateY(-2px)
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  color: #221812;
  font-size: .92rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 40px;
  border: 0;
  cursor: pointer;
  transition: .25s
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(200, 144, 120, .4)
}

/* NAV */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px auto;
  max-width: 1210px;
  background: rgba(245, 241, 234, .96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 60px;
  padding: 12px 24px;
  box-shadow: 0 14px 36px rgba(36, 35, 73, .08)
}

.brand {
  display: block;
  width: 112px;
  height: 42px;
  background: var(--logo) no-repeat left center;
  background-size: contain
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px
}

.menu>li {
  list-style: none;
  position: relative
}

.menu>li>a {
  font-size: .92rem;
  color: var(--navy);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  cursor: pointer
}

.menu>li>a:hover {
  color: var(--copper)
}

.caret {
  font-size: .55rem;
  opacity: .6
}

.drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(36, 35, 73, .14);
  padding: 10px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  z-index: 70
}

.menu>li:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px)
}

.drop a {
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: .88rem;
  color: var(--navy-soft);
  white-space: nowrap
}

.drop a:hover {
  background: var(--cream);
  color: var(--copper)
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px
}

.login {
  font-size: .92rem;
  color: var(--navy)
}

.login:hover {
  color: var(--copper)
}

.navtoggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy)
}

/* PAGE HERO */
.phero {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 170px 0 92px
}

.phero .tex {
  position: absolute;
  inset: 0;
  opacity: .6;
  background: radial-gradient(60% 60% at 82% 30%, rgba(200, 144, 120, .14), transparent 62%), repeating-linear-gradient(125deg, rgba(255, 255, 255, .02) 0 1px, transparent 1px 62px)
}

.phero .wrap {
  position: relative;
  z-index: 2
}

.phero .kicker {
  color: var(--copper-lite)
}

.phero h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  max-width: 20ch
}

.phero h1 i {
  font-style: normal;
  color: var(--copper-lite)
}

.phero p {
  margin-top: 22px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .72);
  max-width: 600px;
  font-weight: 300
}

.phero .pcta {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.head-c {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 52px
}

.head-c h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.14
}

.head-c .lead {
  margin: 0 auto
}

.head-c .gline-sm {
  margin: 20px auto 0
}

/* FOOTER */
footer {
  background: #0c1226;
  color: rgba(255, 255, 255, .62);
  padding: 80px 0 32px
}

.fgrid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.1fr;
  gap: 52px
}

.fbrand {
  width: 150px;
  height: 48px;
  background: var(--logo) no-repeat left center;
  background-size: contain;
  display: block
}

.fabout {
  font-size: .92rem;
  margin: 20px 0 22px;
  max-width: 300px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.75
}

.social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .72);
  transition: .22s
}

.social a:hover {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper)
}

.faddr {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 26px;
  line-height: 1.65
}

.fappt {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 12px
}

.fapps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.fapp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 11px;
  padding: 9px 16px;
  color: #fff;
  text-decoration: none;
  transition: .2s
}

.fapp:hover {
  background: rgba(255, 255, 255, .1)
}

.fapp .txt {
  display: flex;
  flex-direction: column;
  line-height: 1.15
}

.fapp .s {
  font-size: .58rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .02em
}

.fapp .b {
  font-size: .94rem;
  font-weight: 600
}

footer h5 {
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 20px;
  text-transform: uppercase
}

footer ul {
  list-style: none
}

footer li {
  margin-bottom: 13px
}

footer li a {
  font-size: .92rem;
  color: rgba(255, 255, 255, .6)
}

footer li a:hover {
  color: var(--copper)
}

.fdisc {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 54px;
  padding-top: 28px
}

.fdisc b {
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px
}

.fdisc p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .48);
  line-height: 1.75;
  margin-bottom: 8px;
  max-width: 940px
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 26px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255, 255, 255, .42)
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s, transform .7s
}

.reveal.in {
  opacity: 1;
  transform: none
}

@media(max-width:900px) {

  .menu,
  .login {
    display: none
  }

  .navtoggle {
    display: block
  }

  .fgrid {
    grid-template-columns: 1fr 1fr;
    gap: 34px
  }

  .fbot {
    flex-direction: column;
    gap: 8px
  }

  .phero {
    padding: 140px 0 70px
  }
}


.breadcrumb {
  color: var(--copper-lite);
  font-size: .82rem;
  letter-spacing: .04em;
  margin-bottom: 16px
}

.breadcrumb a {
  color: rgba(255, 255, 255, .6)
}

.breadcrumb a:hover {
  color: #fff
}

.sv-intro .grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 58px;
  align-items: center
}

.sv-intro p {
  color: var(--grey-2);
  margin-bottom: 16px;
  max-width: 58ch
}

.sv-panel {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(150deg, #20294a, #12172d);
  box-shadow: 0 40px 90px rgba(20, 25, 45, .3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px
}

.sv-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 30%, rgba(215, 168, 120, .26), transparent 62%)
}

.sv-panel .ic {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  color: #141827;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px
}

.sv-panel .t {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: #fff;
  max-width: 16ch;
  line-height: 1.3
}

.sv-panel .s {
  position: relative;
  color: var(--copper-lite);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 14px
}

.cards3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px
}

.icard {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  transition: transform .3s, box-shadow .3s;
  overflow: hidden
}

.icard:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px rgba(36, 35, 73, .12)
}

.icard .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3ead6, #e7dcc2);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.icard h4 {
  font-size: 1.06rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3
}

.icard p {
  color: var(--grey-2);
  font-size: .9rem
}

.suits {
  background: var(--cream-2)
}

.suits .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--navy-soft);
  font-size: 1rem
}

.checklist .ck {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: .7rem
}

.svtable {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden
}

.svtable th,
.svtable td {
  text-align: left;
  padding: 14px 18px;
  font-size: .9rem;
  border-bottom: 1px solid var(--line)
}

.svtable th {
  background: var(--cream-2);
  color: var(--navy);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase
}

.svtable td:first-child {
  font-weight: 600;
  color: var(--navy)
}

.svtable tr:last-child td {
  border-bottom: 0
}

.points {
  background: var(--cream)
}

.pcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px
}

.pt {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--copper);
  border-radius: 14px;
  padding: 26px 24px
}

.pt h4 {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px
}

.pt p {
  color: var(--grey-2);
  font-size: .88rem
}

.faq {
  background: var(--cream-2)
}

.faq .wrap {
  max-width: 820px
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden
}

details summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem
}

details summary::-webkit-details-marker {
  display: none
}

details summary::after {
  content: "+";
  color: var(--copper);
  font-size: 1.4rem;
  font-weight: 400;
  transition: .3s
}

details[open] summary::after {
  transform: rotate(45deg)
}

details p {
  padding: 0 24px 22px;
  color: var(--grey-2);
  font-size: .92rem
}

.ctaband {
  background: var(--dark);
  text-align: center;
  padding: 84px 0;
  color: #fff;
  position: relative;
  overflow: hidden
}

.ctaband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 20%, rgba(200, 144, 120, .18), transparent 60%)
}

.ctaband h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  position: relative
}

.ctaband p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 26px;
  position: relative
}

.ctaband .pcta {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

@media(max-width:900px) {

  .sv-intro .grid,
  .suits .grid {
    grid-template-columns: 1fr;
    gap: 38px
  }
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center
}

@media(max-width:760px) {
  .svc-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .svc-hero-grid>.illo {
    order: -1
  }

  .svc-hero-grid .illo {
    height: 200px !important;
    margin-top: 30px;
  }

  .phero .pcta {
    width: 100%
  }

  .phero h1 {
    text-align: center;
  }

  .phero p {
    text-align: center;
  }

  .phero .pcta a {
    flex: 1 1 100% !important;
    justify-content: center
  }
}

/* about page */
.stats {
  background: var(--cream-2);
  padding: 56px 0
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.stat {
  text-align: center;
  position: relative
}

.stat+.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: var(--line)
}

.stat b {
  display: block;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em
}

.stat b em {
  font-style: normal;
  color: var(--copper)
}

.stat span {
  font-size: .82rem;
  color: var(--grey);
  margin-top: 8px;
  display: block
}

.whoami .grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center
}

.whoami p {
  color: var(--grey-2);
  margin-bottom: 16px;
  max-width: 60ch
}

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--navy);
  line-height: 1.35;
  border-left: 3px solid var(--copper);
  padding: 6px 0 6px 26px
}

.pullquote span {
  color: var(--copper)
}

.whoami-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(150deg, #20294a, #12172d);
  box-shadow: 0 40px 90px rgba(20, 25, 45, .3)
}

.whoami-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 70% 24%, rgba(215, 168, 120, .28), transparent 62%), repeating-linear-gradient(120deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 46px)
}

.whoami-visual .wv-mark {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 9rem;
  color: rgba(215, 168, 120, .5)
}

.whoami-visual .wv-cap {
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: #fff
}

.whoami-visual .wv-cap b {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  display: block
}

.whoami-visual .wv-cap span {
  color: var(--copper-lite);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase
}

/* timeline */
.journey {
  background: var(--cream)
}

.tl {
  position: relative;
  max-width: 900px;
  margin: 0 auto
}

.tl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--copper), var(--copper-glow));
  transform: translateX(-50%);
  opacity: .4
}

.tlrow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 8px;
  padding: 18px 0
}

.tlrow .tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 18px 40px rgba(36, 35, 73, .06)
}

.tlrow .tcard .yr {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--copper);
  margin-bottom: 6px
}

.tlrow .tcard p {
  color: var(--grey-2);
  font-size: .92rem
}

.tlrow:nth-child(odd) .tcard {
  grid-column: 1
}

.tlrow:nth-child(even) .tcard {
  grid-column: 2
}

.tlrow:nth-child(odd) .spacer {
  grid-column: 2
}

.tldot {
  position: absolute;
  left: 50%;
  top: 34px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--copper);
  transform: translateX(-50%);
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px var(--line);
  z-index: 2
}

.tl-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  transform: translateX(-50%);
  height: 0;
  background: linear-gradient(var(--copper), var(--copper-glow));
  box-shadow: 0 0 12px rgba(200, 144, 120, .7);
  z-index: 1
}

.tlrow.reveal {
  opacity: 1;
  transform: none;
  transition: none
}

.tlrow .tcard {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity .7s ease, transform .8s cubic-bezier(.2, .75, .2, 1)
}

.tlrow:nth-child(even) .tcard {
  transform: translateX(48px)
}

.tlrow.in .tcard {
  opacity: 1;
  transform: none
}

.tldot {
  transform: translateX(-50%) scale(0);
  transition: transform .55s cubic-bezier(.5, 1.7, .5, 1) .12s
}

.tlrow.in .tldot {
  transform: translateX(-50%) scale(1)
}

.tldot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--copper);
  opacity: 0
}

.tlrow.in .tldot::after {
  animation: dotping 1.5s ease .25s 1
}

@keyframes dotping {
  0% {
    transform: scale(.5);
    opacity: .85
  }

  100% {
    transform: scale(2.4);
    opacity: 0
  }
}

/* team */
.team {
  background: var(--cream-2)
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px 26px;
  text-align: center;
  transition: transform .3s, box-shadow .3s
}

.member:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(36, 35, 73, .1)
}

.mphoto {
  width: 100%;
  aspect-ratio: .86;
  border-radius: 14px;
  background-size: cover;
  background-position: top center;
  margin-bottom: 18px
}

.mavatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.4rem;
  color: #fff;
  background: linear-gradient(135deg, #2c3459, #181e3a)
}

.member:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(36, 35, 73, .12)
}

.member .av {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.7rem;
  color: #fff;
  border: 2px solid var(--copper)
}

.member h4 {
  font-size: 1.02rem;
  color: var(--navy);
  font-weight: 600
}

.member .role {
  color: var(--copper);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 4px 0 10px
}

.member p {
  color: var(--grey-2);
  font-size: .84rem;
  line-height: 1.6;
  text-align: left
}

.member h4 {
  text-align: left
}

.member .role {
  text-align: left
}

.lead-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 64px;
  align-items: center
}

.dir-photo {
  position: relative;
  aspect-ratio: 1/1.12;
  border-radius: 26px;
  overflow: hidden;
  background: radial-gradient(120% 100% at 50% 16%, #2b3a6d 0%, #18234b 52%, #0d1531 100%);
  box-shadow: 0 44px 100px rgba(13, 18, 42, .45)
}

.dir-photo .glow {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 108, 138, .4), transparent 66%);
  filter: blur(6px);
  z-index: 1
}

.dir-photo .grid3d {
  position: absolute;
  left: -25%;
  right: -25%;
  bottom: 0;
  height: 44%;
  background-image: linear-gradient(rgba(150, 175, 235, .18) 1px, transparent 1px), linear-gradient(90deg, rgba(150, 175, 235, .18) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(360px) rotateX(64deg);
  transform-origin: bottom center;
  -webkit-mask: linear-gradient(transparent, #000 72%);
  mask: linear-gradient(transparent, #000 72%);
  z-index: 0
}

.dir-photo .rings span {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(198, 214, 255, .32);
  border-radius: 50%;
  aspect-ratio: 1;
  z-index: 1
}

.dir-photo .rings span:nth-child(1) {
  width: 62%;
  animation: dspin 48s linear infinite
}

.dir-photo .rings span:nth-child(2) {
  width: 88%;
  opacity: .5;
  animation: dspin 68s linear infinite reverse
}

@keyframes dspin {
  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.dir-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 97%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, .55));
  z-index: 3;
  animation: dfloat 7s ease-in-out infinite
}

@keyframes dfloat {
  50% {
    transform: translateX(-50%) translateY(-10px)
  }
}

.dir-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 13px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
  z-index: 4
}

.dir-badge2 {
  top: auto;
  left: auto;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  box-shadow: 0 18px 40px rgba(200, 144, 120, .45)
}

.dir-badge2 b {
  color: #fff;
  font-size: 1.3rem
}

.dir-badge2 .cap {
  color: rgba(255, 255, 255, .9)
}

.dir-badge b {
  display: block;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1
}

.dir-badge b .num {
  color: var(--copper)
}

.dir-badge .cap {
  color: var(--grey-2);
  font-size: .74rem;
  margin-top: 3px;
  display: block
}

.dir-name {
  margin-top: 4px
}

.dir-name b {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 600
}

.dir-name span {
  color: var(--copper);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600
}

@media(max-width:820px) {
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .dir-photo {
    max-width: 400px;
    margin: 0 auto;
    width: 100%
  }
}

/* why + cta */
.why {
  background: var(--cream)
}

.why .panel {
  background: linear-gradient(150deg, #1d2547, #12172d);
  border-radius: 26px;
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.why .panel::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 168, 120, .18), transparent 66%)
}

.why h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 22px;
  position: relative;
  max-width: 16ch
}

.why p {
  color: rgba(255, 255, 255, .74);
  max-width: 66ch;
  position: relative;
  font-size: 1.05rem
}

.why .btn-gold {
  margin-top: 30px;
  position: relative
}

.ctaband {
  background: var(--cream-2);
  text-align: center;
  padding: 80px 0
}

.ctaband h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 12px
}

.ctaband p {
  color: var(--grey-2);
  margin-bottom: 26px
}

@media(max-width:900px) {
  .stats .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0
  }

  .stat:nth-child(2)::before,
  .stat:nth-child(3)::before {
    display: none
  }

  .whoami .grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .tl::before {
    left: 18px
  }

  .tlrow {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 44px
  }

  .tlrow .tcard,
  .tlrow:nth-child(even) .tcard,
  .tlrow:nth-child(odd) .tcard {
    grid-column: 1
  }

  .spacer {
    display: none
  }

  .tldot {
    left: 18px
  }

  .tl-fill {
    display: none
  }

  .tlrow .tcard,
  .tlrow:nth-child(even) .tcard {
    transform: translateX(-28px)
  }

  .tlrow.in .tcard {
    transform: none
  }

  .tgrid {
    grid-template-columns: 1fr 1fr
  }

  .why .panel {
    padding: 40px 28px
  }
}

/* service section upgrades */
.sv-intro2 {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 50px;
  align-items: center
}

.sv-intro2 p {
  color: var(--grey-2);
  margin-bottom: 16px;
  max-width: 62ch
}

.sv-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(36, 35, 73, .08);
  position: relative;
  overflow: hidden
}

.sv-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--copper-glow))
}

.sv-side h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 6px 0 10px
}

.sv-side p {
  color: var(--grey-2);
  font-size: .92rem;
  margin-bottom: 22px
}

.helpcta {
  text-align: center;
  margin-top: 46px
}

.svtable-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(36, 35, 73, .09);
  position: relative;
  max-width: 1000px;
  margin: 0 auto
}

.svtable-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--copper-glow));
  z-index: 2
}

.svtable {
  width: 100%;
  border-collapse: collapse;
  border: 0
}

.svtable th {
  background: var(--cream-2);
  color: var(--navy);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: left;
  padding: 20px 30px;
  border: 0
}

.svtable td {
  padding: 22px 30px;
  font-size: .94rem;
  color: var(--grey-2);
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: transparent
}

.svtable td:first-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap
}

.fdot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 13px;
  vertical-align: middle;
  transition: box-shadow .25s
}

.svtable tbody tr {
  opacity: 0;
  transform: translateY(16px);
  transition: background .25s
}

.svtable-wrap.in tbody tr {
  animation: trow .6s cubic-bezier(.2, .7, .2, 1) forwards
}

.svtable-wrap.in tbody tr:nth-child(1) {
  animation-delay: .08s
}

.svtable-wrap.in tbody tr:nth-child(2) {
  animation-delay: .17s
}

.svtable-wrap.in tbody tr:nth-child(3) {
  animation-delay: .26s
}

.svtable-wrap.in tbody tr:nth-child(4) {
  animation-delay: .35s
}

.svtable-wrap.in tbody tr:nth-child(5) {
  animation-delay: .44s
}

.svtable-wrap.in tbody tr:nth-child(6) {
  animation-delay: .53s
}

@keyframes trow {
  to {
    opacity: 1;
    transform: none
  }
}

.svtable tbody tr:hover {
  background: linear-gradient(90deg, rgba(200, 144, 120, .09), transparent 82%)
}

.svtable tbody tr:hover .fdot {
  box-shadow: 0 0 0 4px rgba(200, 144, 120, .2)
}

@media(max-width:760px) {
  .svtable-wrap {
    overflow-x: auto
  }

  .svtable {
    min-width: 580px
  }
}

.ws-panel {
  background: linear-gradient(155deg, #232b4d 0%, #141a30 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 26px;
  padding: 60px 64px;
  box-shadow: 0 40px 90px rgba(15, 20, 40, .3);
  position: relative;
  overflow: hidden
}

.ws-panel::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 168, 120, .18), transparent 68%);
  z-index: 0
}

.ws-panel::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -110px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(215, 168, 120, .1);
  border-radius: 50%;
  z-index: 0
}

@keyframes wsaura {

  0%,
  100% {
    opacity: .7;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.14)
  }
}

@keyframes wsspin {
  to {
    transform: rotate(360deg)
  }
}

.wsp {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--copper-glow), transparent 70%);
  opacity: 0;
  z-index: 0;
  animation: wsdrift 8s ease-in infinite
}

.wsp1 {
  left: 16%;
  bottom: 14%;
  animation-delay: 0s
}

.wsp2 {
  left: 33%;
  bottom: 8%;
  animation-delay: 1.6s
}

.wsp3 {
  left: 8%;
  bottom: 34%;
  animation-delay: 3s
}

.wsp4 {
  left: 46%;
  bottom: 20%;
  animation-delay: .8s
}

.wsp5 {
  left: 60%;
  bottom: 10%;
  animation-delay: 4.2s
}

.wsp6 {
  left: 25%;
  bottom: 44%;
  animation-delay: 2.3s
}

@keyframes wsdrift {
  0% {
    transform: translateY(0);
    opacity: 0
  }

  22% {
    opacity: .85
  }

  100% {
    transform: translateY(-150px);
    opacity: 0
  }
}

.who-suits {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1
}

.ws-ic {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  color: #141827;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 16px 34px rgba(200, 144, 120, .5)
}

/* who-it-suits bento (matches svc_body markup) */
.ws-sec {
  background: var(--cream)
}

.wsbento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px
}

.wsb-main {
  grid-column: 1;
  grid-row: 1 / 3;
  background: linear-gradient(160deg, #232b4d 0%, #141a30 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 24px;
  padding: 48px 44px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.wsb-main::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 168, 120, .2), transparent 66%)
}

.wsb-main>* {
  position: relative;
  z-index: 1
}

.wsb-main h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 14px
}

.wsb-lead {
  color: rgba(255, 255, 255, .66);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 34ch
}

.wsb-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 30px rgba(36, 35, 73, .07);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.2, .7, .2, 1), box-shadow .3s
}

.wsbento.in .wsb-item {
  opacity: 1;
  transform: none
}

.wsbento.in .wsb-item:nth-child(2) {
  transition-delay: .08s
}

.wsbento.in .wsb-item:nth-child(3) {
  transition-delay: .16s
}

.wsbento.in .wsb-item:nth-child(4) {
  transition-delay: .24s
}

.wsbento.in .wsb-item:nth-child(5) {
  transition-delay: .32s
}

.wsb-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%), rgba(200, 144, 120, .2), transparent 56%);
  opacity: 0;
  transition: opacity .35s;
  z-index: 0;
  pointer-events: none
}

.wsb-item:hover::before {
  opacity: 1
}

.wsb-item>* {
  position: relative;
  z-index: 1
}

.wsb-item:hover {
  transform: translateY(-7px) !important;
  transition-delay: 0s !important;
  box-shadow: 0 26px 54px rgba(36, 35, 73, .15)
}

.wsb-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 144, 120, .16), rgba(217, 168, 143, .1));
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s, color .35s
}

.wsb-item:hover .wsb-ic {
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  color: #fff
}

.wsb-item p {
  color: var(--navy);
  font-weight: 500;
  font-size: .98rem;
  line-height: 1.5;
  margin: 0
}

.wsb-item.copper {
  background: linear-gradient(150deg, var(--copper), var(--copper-lite));
  border: 0;
  color: #fff
}

.wsb-item.copper .wsb-ic {
  background: rgba(255, 255, 255, .22);
  color: #fff
}

.wsb-item.copper p {
  color: #fff
}

.wsb-item.copper::before {
  background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .16), transparent 56%)
}

@media(max-width:900px) {
  .wsbento {
    grid-template-columns: 1fr 1fr
  }

  .wsb-main {
    grid-column: 1 / 3;
    grid-row: auto
  }
}

@media(max-width:560px) {
  .wsbento {
    grid-template-columns: 1fr
  }

  .wsb-main {
    grid-column: 1
  }
}

.who-suits h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.15
}

.who-suits .lead {
  color: rgba(255, 255, 255, .66);
  margin-bottom: 30px
}

.who-suits .btn-navy {
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  color: #1c1204;
  box-shadow: 0 14px 30px rgba(200, 144, 120, .4)
}

.who-suits .btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(200, 144, 120, .5)
}

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.checklist.reveal {
  opacity: 1;
  transform: none
}

.checklist li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(180deg, #ffffff, #fbf7f2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 16px 36px rgba(10, 14, 30, .3);
  color: var(--navy);
  font-weight: 500;
  font-size: .98rem;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.2, .7, .2, 1), box-shadow .35s
}

.checklist li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(190px circle at var(--mx, 50%) var(--my, 50%), rgba(200, 144, 120, .22), transparent 56%);
  opacity: 0;
  transition: opacity .35s;
  z-index: 0;
  pointer-events: none
}

.checklist li:hover::before {
  opacity: 1
}

.checklist li>* {
  position: relative;
  z-index: 1
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s;
  z-index: 1
}

.checklist li:hover::after {
  transform: scaleX(1)
}

.checklist.in li {
  opacity: 1;
  transform: none
}

.checklist.in li:nth-child(1) {
  transition-delay: .06s
}

.checklist.in li:nth-child(2) {
  transition-delay: .15s
}

.checklist.in li:nth-child(3) {
  transition-delay: .24s
}

.checklist.in li:nth-child(4) {
  transition-delay: .33s
}

.checklist.in li:nth-child(5) {
  transition-delay: .42s
}

.checklist.in li:nth-child(6) {
  transition-delay: .51s
}

.checklist li:hover {
  transform: translateY(-6px) !important;
  transition-delay: 0s !important;
  box-shadow: 0 26px 50px rgba(10, 14, 30, .4)
}

.checklist li:hover::after {
  transform: scaleX(1)
}

.checklist li:hover .ck {
  transform: scale(1.1) rotate(-5deg)
}

.checklist .ck {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 144, 120, .16), rgba(217, 168, 143, .1));
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background .35s, color .35s
}

.checklist li:hover .ck {
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  color: #fff
}

.pt {
  transition: transform .3s, box-shadow .3s
}

.pt:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(36, 35, 73, .1)
}

.ptcta {
  text-align: center;
  margin-top: 42px
}

@media(max-width:900px) {

  .sv-intro2,
  .who-suits {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .ws-panel {
    padding: 36px 26px
  }

  .checklist {
    grid-template-columns: 1fr
  }
}

.page {
  display: none
}

.page.active {
  display: block;
  animation: pgfade .5s ease
}

@keyframes pgfade {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.illo {
  width: 200px;
  height: 170px;
  flex: none
}

/* numbered solutions */
.sol {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 220px;
  gap: 30px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 36px;
  margin-bottom: 24px;
  transition: transform .3s, box-shadow .3s
}

.sol:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 62px rgba(36, 35, 73, .12)
}

.sol .num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.sol h3 {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2
}

.sol .desc {
  color: var(--copper);
  font-size: .95rem;
  margin-bottom: 16px;
  max-width: 52ch;
  font-weight: 500
}

.sol ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px
}

.sol ul li {
  position: relative;
  padding-left: 18px;
  color: var(--grey-2);
  font-size: .88rem
}

.sol ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--copper)
}

.sol .go2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 600;
  font-size: .85rem
}

.sol .go2:hover {
  color: var(--copper)
}

.sol .illo {
  background: var(--cream-2);
  border-radius: 16px;
  padding: 12px
}

/* clean CTA band */
.cta2 {
  background: var(--cream-2)
}

.cta2 .box {
  background: linear-gradient(150deg, #f7f3ec, #efe7d9);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px;
  text-align: center
}

.cta2 h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px
}

.cta2 p {
  color: var(--grey-2);
  margin-bottom: 26px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto
}

.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  color: #1c1c30;
  font-size: .92rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 40px;
  border: 0;
  cursor: pointer;
  transition: .25s
}

.btn-cream:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25)
}

.sv-panel .illo {
  width: 70%;
  height: auto;
  position: relative;
  z-index: 2
}

@media(max-width:900px) {
  .sol {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left
  }

  .sol .illo {
    width: 100%;
    max-width: 260px
  }

  .sol ul {
    grid-template-columns: 1fr
  }

  .cta2 .box {
    padding: 38px 24px
  }
}

.illo svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible
}

.illo .ib {
  fill: url(#gg);
  animation: igrow 2.6s ease-in-out infinite
}

.illo .iline {
  stroke: #e7cd94;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: idraw 2.8s ease forwards infinite
}

.illo .idot {
  fill: #f6e0d0;
  filter: drop-shadow(0 0 6px rgba(246, 224, 208, .9));
  animation: ipulse 2.2s ease-in-out infinite
}

.illo .idot2 {
  fill: #d9a88f
}

.illo .iring {
  stroke: #c89078;
  stroke-width: 6;
  stroke-linecap: round;
  animation: ispin 8s linear infinite;
  transform-origin: 110px 92px
}

.illo .idisc {
  fill: rgba(215, 168, 120, .35)
}

.illo .idiam {
  fill: rgba(215, 168, 120, .85)
}

.illo .idiam2 {
  fill: rgba(215, 168, 120, .55)
}

.illo .idiam3 {
  fill: rgba(215, 168, 120, .3)
}

.illo .ifloat {
  animation: ifl 3.4s ease-in-out infinite;
  transform-origin: center
}

.illo .inet {
  stroke: rgba(215, 168, 120, .4);
  stroke-width: 1.5
}

.illo .inode {
  fill: #d9a88f;
  animation: ipulse 2.4s ease-in-out infinite
}

.illo .inodec {
  fill: #c89078;
  filter: drop-shadow(0 0 8px rgba(200, 144, 120, .7))
}

.illo .iglobe {
  stroke: rgba(215, 168, 120, .55);
  stroke-width: 2
}

.illo .ispin {
  animation: ispin 7s linear infinite
}

.illo .ishield {
  stroke: #c89078;
  stroke-width: 4;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: idraw 3s ease forwards infinite
}

.illo .icheck {
  stroke: #e7cd94;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: idraw 2.4s ease .6s forwards infinite
}

.illo .icoin {
  fill: rgba(215, 168, 120, .55);
  stroke: #c89078;
  stroke-width: 1.5;
  animation: ifl 3s ease-in-out infinite
}

.illo .iwick {
  stroke: rgba(215, 168, 120, .6);
  stroke-width: 2
}

.illo .icandle {
  fill: url(#gg);
  animation: igrow 2.8s ease-in-out infinite
}

@keyframes igrow {

  0%,
  100% {
    transform: scaleY(.86);
    transform-origin: bottom
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom
  }
}

@keyframes idraw {
  0% {
    stroke-dashoffset: 520
  }

  60%,
  100% {
    stroke-dashoffset: 0
  }
}

@keyframes ipulse {

  0%,
  100% {
    opacity: .7;
    r: 5
  }

  50% {
    opacity: 1
  }
}

@keyframes ifl {
  50% {
    transform: translateY(-9px)
  }
}

@keyframes ispin {
  to {
    transform: rotate(360deg)
  }
}

svg defs,
.illo defs {
  position: absolute
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  transition: transform .3s, box-shadow .3s;
  display: block
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(36, 35, 73, .12)
}

.svc-card .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3ead6, #e7dcc2);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.svc-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px
}

.svc-card p {
  color: var(--grey-2);
  font-size: .88rem
}

.svc-card .go {
  margin-top: 14px;
  display: inline-flex;
  gap: 6px;
  color: var(--copper);
  font-weight: 600;
  font-size: .82rem
}

/* rich inner-page theme (standalone files) */
body {
  background: #f7f4ef
}

:root {
  --cream: #f7f4ef;
  --cream-2: #ffffff;
  --line: #e9e4da
}

.icard,
.pt,
.sol,
.member,
.tcard,
.svc-card {
  box-shadow: 0 14px 38px rgba(36, 35, 73, .07)
}

.snum {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px
}

.dband {
  background: linear-gradient(180deg, #1b2340, #10152a);
  position: relative;
  overflow: hidden
}

.dband::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 168, 120, .16), transparent 66%)
}

.dband .wrap {
  position: relative
}

.dband .head-c h2 {
  color: #fff
}

.dband .head-c .lead {
  color: rgba(255, 255, 255, .62)
}

.dband .icard {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: none
}

.dband .icard h4 {
  color: #fff
}

.dband .icard p {
  color: rgba(255, 255, 255, .6)
}

.dband .snum {
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  color: #141827
}

.cta2 {
  background: #f7f4ef
}

.cta2 .box {
  background: linear-gradient(150deg, #1d2547, #11162b);
  border: 0;
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta2 .box::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 168, 120, .2), transparent 66%)
}

.cta2 .box h2 {
  color: #fff;
  position: relative
}

.cta2 .box p {
  color: rgba(255, 255, 255, .72);
  position: relative
}

.cta2 .box .btn-navy {
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  color: #1c1204;
  position: relative
}

.stats {
  background: linear-gradient(180deg, #1b2340, #10152a) !important
}

.stats .stat b {
  color: #fff
}

.stats .stat b em {
  color: var(--copper-lite)
}

.stats .stat span {
  color: rgba(255, 255, 255, .55)
}

.stats .stat+.stat::before {
  background: rgba(255, 255, 255, .12)
}

.ctaband {
  background: linear-gradient(150deg, #1b2340, #10152a) !important;
  color: #fff
}

.ctaband h2 {
  color: #fff
}

.ctaband p {
  color: rgba(255, 255, 255, .72)
}

.ctaband .btn-dark {
  background: linear-gradient(135deg, var(--copper), var(--copper-lite));
  color: #1c1204
}

/* contact / forms */
.cform {
  display: grid;
  gap: 16px
}

.cform label {
  font-size: .82rem;
  color: var(--navy);
  font-weight: 600;
  display: block;
  margin-bottom: 6px
}

.cform input,
.cform textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: .95rem;
  background: #fff;
  color: var(--navy)
}

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

.cinfo {
  display: flex;
  flex-direction: column;
  gap: 22px
}

.cinfo .row {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.cinfo .ci {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f3ead6, #e7dcc2);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none
}

.cinfo b {
  display: block;
  color: var(--navy);
  font-size: .95rem
}

.cinfo span {
  color: var(--grey-2);
  font-size: .9rem
}

/* posts */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: .3s;
  display: block
}

.post:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(36, 35, 73, .12)
}

.post .th {
  height: 160px;
  background: linear-gradient(135deg, #2b3550, #454f6b);
  position: relative
}

.post:nth-child(3n+2) .th {
  background: linear-gradient(135deg, #b07f5f, #7c5136)
}

.post:nth-child(3n) .th {
  background: linear-gradient(135deg, #c19a55, #8a6a2f)
}

.post .th .pl {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy)
}

.post .b {
  padding: 22px 24px 26px
}

.post .cat {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600
}

.post h3 {
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 600;
  margin: 9px 0 6px;
  line-height: 1.3
}

.post p {
  color: var(--grey-2);
  font-size: .88rem
}

/* calculators */
.calc-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px
}

.calc-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  padding: 11px 22px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: .25s
}

.calc-tabs button.on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.calc {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(36, 35, 73, .07)
}

.calc.on {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px
}

.calc .field {
  margin-bottom: 24px
}

.calc .field .lab {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 10px
}

.calc .field .val {
  color: var(--copper)
}

.calc input[type=range] {
  width: 100%;
  accent-color: var(--copper)
}

.calc .out {
  background: linear-gradient(150deg, #1d2547, #11162b);
  border-radius: 18px;
  padding: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.calc .out .big {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 6px 0 4px
}

.calc .out .big em {
  font-style: normal;
  color: var(--copper-lite)
}

.calc .out .sub {
  color: rgba(255, 255, 255, .6);
  font-size: .86rem
}

.calc .out .brk {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.calc .out .brk .r {
  display: flex;
  justify-content: space-between;
  font-size: .9rem
}

.calc .out .brk .r span {
  color: rgba(255, 255, 255, .6)
}

.calc .out .brk .r b {
  color: #fff
}

.calcnote {
  text-align: center;
  color: var(--grey);
  font-size: .8rem;
  margin-top: 20px
}

/* legal / prose */
.prose {
  max-width: 820px;
  margin: 0 auto
}

.prose h2 {
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  margin: 34px 0 12px
}

.prose h3 {
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 600;
  margin: 22px 0 8px
}

.prose p {
  color: var(--grey-2);
  margin-bottom: 14px
}

.prose ul {
  color: var(--grey-2);
  margin: 0 0 16px 20px
}

.prose li {
  margin-bottom: 8px
}

.prose a {
  color: var(--copper)
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}

.sitemap-grid h3 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px
}

.sitemap-grid ul {
  list-style: none
}

.sitemap-grid li {
  margin-bottom: 9px
}

.sitemap-grid a {
  color: var(--grey-2)
}

.sitemap-grid a:hover {
  color: var(--copper)
}

.mapwrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(36, 35, 73, .1);
  border: 1px solid var(--line)
}

@media(max-width:760px) {
  .phero {
    padding-top: 140px !important
  }

  .phero h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
    line-height: 1.02
  }

  .phero p {
    font-size: 1.05rem;
    line-height: 1.4
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important
  }

  .contact-form-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important
  }

  .cform .btn-navy {
    width: 100%;
    justify-content: center
  }

  .cinfo {
    gap: 18px
  }

  .cinfo .row {
    gap: 12px
  }

  .mapwrap iframe {
    height: 320px !important
  }
}

@media(max-width:900px) {
  .calc.on {
    grid-template-columns: 1fr
  }

  .pgrid,
  .sitemap-grid {
    grid-template-columns: 1fr
  }

  .cinfo {
    margin-top: 20px
  }
}

html,
body,
*,
*::before,
*::after,
*::marker,
*::placeholder,
input,
button,
textarea,
select,
optgroup,
option {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important
}

.mnav-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  align-self: center
}

.mnav-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: #242349;
  border-radius: 2px;
  transition: .25s
}

.mnav-open>.mnav-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.mnav-open>.mnav-btn span:nth-child(2) {
  opacity: 0
}

.mnav-open>.mnav-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

@media(max-width:880px) {

  #hdr .nav>.menu,
  #hdr .nav>.actions {
    display: none !important
  }

  #hdr .nav>.mnav-btn {
    display: flex !important
  }

  #hdr .nav {
    position: relative;
    flex-wrap: nowrap;
    align-items: center
  }

  #hdr .nav.mnav-open>.menu {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e6e0d3;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 26px 54px rgba(36, 35, 73, .28);
    z-index: 400;
    gap: 0;
    list-style: none;
    margin: 0;
    max-height: calc(100vh - 110px);
    overflow-y: auto
  }

  #hdr .nav.mnav-open>.menu li {
    list-style: none;
    border-bottom: 1px solid #f2eee4
  }

  #hdr .nav.mnav-open>.menu li:last-child {
    border-bottom: 0
  }

  #hdr .nav.mnav-open>.menu>a,
  #hdr .nav.mnav-open>.menu>li>a {
    padding: 14px 16px;
    border-radius: 10px;
    color: #242349;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500
  }

  #hdr .nav.mnav-open>.menu .drop {
    display: none !important;
    background: #faf7f2;
    border-radius: 10px;
    margin: 0 4px 8px;
    padding: 4px 0;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 0 !important;
    min-width: 0 !important
  }

  #hdr .nav.mnav-open>.menu li.open>.drop {
    display: block !important
  }

  #hdr .nav.mnav-open>.menu li.open>a .caret {
    transform: rotate(180deg)
  }

  #hdr .nav.mnav-open>.menu .drop a {
    font-size: .88rem;
    padding: 11px 22px;
    color: #5a5a6a;
    display: block
  }

  #hdr .nav.mnav-open>.menu .caret {
    transition: transform .2s;
    opacity: .55
  }

  #fvnav .fvbar>.fvmenu,
  #fvnav .fvbar>.fvact {
    display: none !important
  }

  #fvnav .fvbar>.mnav-btn {
    display: flex !important
  }

  #fvnav .fvbar {
    position: relative
  }

  #fvnav .fvbar.mnav-open>.fvmenu {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .3);
    z-index: 400;
    list-style: none;
    margin: 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto
  }

  #fvnav .fvbar.mnav-open>.fvmenu>li {
    border-bottom: 1px solid #f2eee4
  }

  #fvnav .fvbar.mnav-open>.fvmenu>li>a {
    padding: 13px 16px;
    display: flex;
    justify-content: space-between;
    color: #242349
  }

  #fvnav .fvbar.mnav-open>.fvmenu .fvdrop {
    display: none !important;
    background: #faf7f2;
    border-radius: 10px;
    margin: 0 4px 8px;
    padding: 4px 0;
    min-width: 0 !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important
  }

  #fvnav .fvbar.mnav-open>.fvmenu li.open>.fvdrop {
    display: block !important
  }

  #fvnav .fvbar.mnav-open>.fvmenu .fvdrop a {
    padding: 10px 22px;
    color: #5a5a6a;
    display: block
  }

  h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.5rem) !important
  }
}

@media(max-width:760px) {

  .lead-grid,
  .who-suits,
  .sv-intro2,
  .ldr2,
  .calcwrap,
  .calc.on,
  .pgrid,
  .sitemap-grid,
  .fgrid,
  .tgrid,
  .cards3,
  .pcards,
  .wsbento,
  .svc-grid {
    grid-template-columns: 1fr !important
  }

  .fdrs .fw {
    grid-template-columns: 1fr !important
  }

  .wsbento .wsb-main {
    grid-row: auto !important
  }

  section {
    padding-top: 54px !important;
    padding-bottom: 54px !important
  }

  .comm-table th,
  .comm-table td {
    padding: 11px 13px !important;
    font-size: .8rem !important;
    white-space: normal !important
  }

  .calc-tabs {
    overflow-x: auto;
    flex-wrap: nowrap
  }
}