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

body {
  margin: 0;
  padding: 0;
  overscroll-behavior: contain;
  overflow-x: hidden;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #2a1f2e;
  background: #fff
}

:focus {
  outline: none;
  border-bottom: 4px solid #AD67B7
}

.site-hd {
  background: #fff;
  position: relative;
  z-index: 100;
  border-bottom: 2px solid #D3B4D0
}

.hd-top {
  background: linear-gradient(135deg, #AD67B7 0%, #c48bcb 60%, #D3B4D0 100%);
  padding: 8px 0
}

.hd-top-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.hd-contact-strip {
  display: flex;
  align-items: center;
  gap: 32px
}

.hd-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 180ms ease-in-out
}

.hd-contact-item:hover {
  color: #2a1f2e
}

.hd-contact-item svg {
  flex-shrink: 0
}

.hd-tagline {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: .03em;
  opacity: .92
}

.hd-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  gap: 32px;
  min-height: 88px
}

.brand-mount {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px 16px 0;
  border-right: 3px solid #AD67B7;
  flex-shrink: 0
}

.brand-img-hold {
  width: 60px;
  height: 60px;
  border-radius: 48px;
  background: #f5eef7;
  border: 2px solid #D3B4D0;
  box-shadow: 1px 4px 18px 0 #ad67b714;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0
}

.brand-img-hold img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.brand-name {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: #2a1f2e;
  letter-spacing: -.02em;
  white-space: nowrap
}

.brand-sub {
  font-size: 16px;
  font-weight: 400;
  color: #AD67B7;
  line-height: 1.2;
  white-space: nowrap
}

.hd-nav-hold {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 16px
}

.hd-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0
}

.hd-nav li {
  margin: 0;
  padding: 0
}

.hd-nav-lnk {
  display: block;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #2a1f2e;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: color 200ms ease-in-out, background 200ms ease-in-out, border-color 200ms ease-in-out;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center
}

.hd-nav-lnk:hover {
  color: #AD67B7;
  background: #f5eef7;
  border-color: #D3B4D0
}

.hd-nav-lnk.active {
  color: #AD67B7;
  background: #f5eef7;
  border-color: #AD67B7;
  font-weight: 700
}

.hd-nav-lnk:focus {
  border-bottom: 4px solid #AD67B7
}

.hd-prop {
  display: flex;
  align-items: center;
  padding: 16px 0 16px 16px;
  border-left: 2px solid #D3B4D0;
  flex-shrink: 0
}

.hd-prop-text {
  font-size: 16px;
  font-weight: 400;
  color: #6b4a70;
  line-height: 1.5;
  max-width: 220px
}

.hd-prop-text strong {
  color: #AD67B7;
  font-weight: 700
}

@media (max-width: 1280px) {
  .hd-top-shell {
    padding: 0 16px
  }

  .hd-main {
    padding: 0 16px;
    gap: 16px
  }

  .brand-mount {
    padding: 16px 16px 16px 0
  }

  .hd-prop {
    display: none
  }
}

@media (max-width: 768px) {
  .hd-top {
    padding: 4px 0
  }

  .hd-top-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 16px
  }

  .hd-tagline {
    display: none
  }

  .hd-contact-strip {
    gap: 16px;
    flex-wrap: wrap
  }

  .hd-main {
    flex-wrap: wrap;
    min-height: unset;
    padding: 8px 16px;
    gap: 8px
  }

  .brand-mount {
    border-right: none;
    padding: 8px 0;
    border-bottom: 2px solid #D3B4D0;
    width: 100%
  }

  .hd-nav-hold {
    padding: 0;
    width: 100%
  }

  .hd-nav {
    gap: 4px
  }
}

.ft {
  background: linear-gradient(160deg, #2a1f2e 0%, #3d2b42 100%);
  color: #D3B4D0;
  padding: 32px 0 0
}

.ft-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px
}

.ft-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ft-logo-hold {
  display: flex;
  align-items: center;
  gap: 16px
}

.ft-img-mount {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #f5eef7;
  border: 2px solid #AD67B7;
  box-shadow: 1px 4px 18px 0 #ad67b71f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0
}

.ft-img-mount img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block
}

.ft-brand-name {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em
}

.ft-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #D3B4D0;
  max-width: 380px
}

.ft-addr {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ft-addr-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: #D3B4D0;
  text-decoration: none;
  transition: color 200ms ease-in-out;
  line-height: 1.5
}

.ft-addr-item:hover {
  color: #fff
}

.ft-addr-item svg {
  flex-shrink: 0;
  margin-top: 2px
}

.ft-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ft-links-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 2px solid #AD67B7;
  display: inline-block
}

.ft-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ft-links-list li {
  margin: 0;
  padding: 0
}

.ft-lnk {
  font-size: 16px;
  font-weight: 400;
  color: #D3B4D0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 250ms ease-in-out, border-color 250ms ease-in-out;
  min-height: 44px
}

.ft-lnk:hover {
  color: #fff;
  border-bottom-color: #AD67B7
}

.ft-lnk:focus {
  border-bottom: 4px solid #AD67B7
}

.ft-lnk-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.ft-bar {
  border-top: 1px solid #ad67b74d;
  margin-top: 0;
  padding: 16px 0
}

.ft-bar-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.ft-copy {
  font-size: 16px;
  color: #d3b4d0b3;
  line-height: 1.5
}

.ft-policy-note {
  font-size: 16px;
  color: #d3b4d099;
  line-height: 1.5
}

.ft-policy-note a {
  color: #D3B4D0;
  text-decoration: underline;
  transition: color 200ms ease-in-out
}

.ft-policy-note a:hover {
  color: #fff
}

@media (max-width: 768px) {
  .ft-shell {
    padding: 0 16px
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ft-bar-shell {
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }
}

.ck-pop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 1px 8px 52px 0 #ad67b71f 1px 4px 18px 0 #ad67b714;
  border: 1px solid #D3B4D0;
  z-index: 1500;
  padding: 16px;
  display: none
}

.ck-pop.visible {
  display: block
}

.ck-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px
}

.ck-icon-svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0
}

.ck-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #6b4a70;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 180ms ease-in-out, background 180ms ease-in-out;
  min-width: 44px;
  min-height: 44px
}

.ck-close-btn:hover {
  color: #AD67B7;
  background: #f5eef7
}

.ck-intro {
  font-size: 16px;
  font-weight: 500;
  color: #2a1f2e;
  line-height: 1.5;
  margin-bottom: 8px
}

.ck-uses {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ck-uses li {
  font-size: 16px;
  color: #6b4a70;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.ck-uses li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #AD67B7;
  flex-shrink: 0;
  margin-top: 8px
}

.ck-necessary {
  font-size: 16px;
  color: #6b4a70;
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 8px;
  background: #f5eef7;
  border-radius: 6px;
  border-left: 3px solid #AD67B7;
  border-top: 1px solid #D3B4D0;
  border-right: 1px solid #D3B4D0;
  border-bottom: 1px solid #D3B4D0
}

.ck-necessary strong {
  color: #2a1f2e
}

.ck-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.ck-accept {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #AD67B7;
  border: 2px solid #AD67B7;
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out
}

.ck-accept:hover {
  background: #9a55a4;
  border-color: #9a55a4
}

.ck-reject {
  font-size: 16px;
  font-weight: 400;
  color: #AD67B7;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 200ms ease-in-out
}

.ck-reject:hover {
  color: #2a1f2e
}

.ck-policy-ref {
  margin-top: 8px;
  font-size: 16px;
  color: #6b4a70b3;
  line-height: 1.5
}

.ck-policy-ref a {
  color: #AD67B7;
  text-decoration: underline;
  transition: color 200ms ease-in-out
}

.ck-policy-ref a:hover {
  color: #2a1f2e
}

@media (max-width: 768px) {
  .ck-pop {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto
  }
}

.doc-inner-xau {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px;
  color: #2a2230;
  line-height: 1.75;
  font-size: 16px
}

.doc-inner-xau ul,
.doc-inner-xau ol {
  padding-left: 32px;
  margin: 16px 0
}

.doc-inner-xau li {
  margin: 8px 0;
  line-height: 1.75
}

.doc-inner-xau ul li {
  list-style-type: disc
}

.doc-inner-xau ol li {
  list-style-type: decimal
}

.doc-inner-xau ul ul,
.doc-inner-xau ol ol,
.doc-inner-xau ul ol,
.doc-inner-xau ol ul {
  margin: 4px 0
}

.doc-inner-xau strong,
.doc-inner-xau b {
  font-weight: 700;
  color: #1e1528
}

.doc-inner-xau a {
  color: #AD67B7;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.doc-inner-xau a:hover {
  color: #7d3f8a;
  text-decoration-color: #D3B4D0
}

.doc-inner-xau table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 16px;
  box-shadow: 1px 4px 18px 0 #ad67b714;
  border-radius: 10px;
  overflow: hidden
}

.doc-inner-xau thead {
  background-color: #AD67B7;
  color: #fff
}

.doc-inner-xau thead th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.01em;
  line-height: 1.5
}

.doc-inner-xau tbody tr {
  border-bottom: 1px solid #D3B4D0;
  transition: background-color .2s ease-in-out
}

.doc-inner-xau tbody tr:last-child {
  border-bottom: none
}

.doc-inner-xau tbody tr:nth-child(even) {
  background-color: #f7f2f8
}

.doc-inner-xau tbody tr:hover {
  background-color: #ede3ee
}

.doc-inner-xau td {
  padding: 16px;
  line-height: 1.75;
  vertical-align: top;
  color: #2a2230
}

.doc-inner-xau th {
  padding: 16px
}

.doc-inner-xau hr {
  border: none;
  border-top: 1px solid #D3B4D0;
  margin: 32px 0;
  opacity: .7
}

@media (max-width: 768px) {
  .doc-inner-xau {
    padding: 16px
  }

  .doc-inner-xau table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .doc-inner-xau thead th,
  .doc-inner-xau td {
    padding: 8px;
    font-size: 16px
  }

  .doc-inner-xau ul,
  .doc-inner-xau ol {
    padding-left: 16px
  }
}

.ss-pg {
  background: #fff;
  overflow-x: clip
}

.ss-pg .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.ss-pg .tb {
  position: relative;
  background: linear-gradient(170deg, #AD67B7 0%, #D3B4D0 55%, #fff 100%);
  padding: 80px 32px 64px
}

.ss-pg .tb-curves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.ss-pg .tb-curves svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .18
}

.ss-pg .tb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px
}

.ss-pg .tb-text {
  flex: 1 1 55%;
  padding: 32px 32px 32px 0
}

.ss-pg .tb-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600
}

.ss-pg .tb-h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 16px
}

.ss-pg .tb-h1 em {
  font-style: italic
}

.ss-pg .tb-desc {
  font-size: 21px;
  line-height: 1.75;
  color: #fff;
  margin: 0 0 32px;
  max-width: 520px
}

.ss-pg .tb-link {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid #fff9;
  padding-bottom: 4px;
  transition: border-color .45s cubic-bezier(0.22, 1, 0.36, 1), color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ss-pg .tb-link:hover {
  border-color: #fff
}

.ss-pg .tb-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  border-radius: 6px
}

.ss-pg .tb-img-wrap {
  flex: 0 0 40%;
  position: relative
}

.ss-pg .tb-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 1px 8px 52px 0 #ad67b71f
}

.ss-pg .tb-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ad67b761 0%, transparent 50%, #ad67b738 100%);
  pointer-events: none;
  z-index: 1
}

.ss-pg .sg {
  background: #f5eef7;
  padding: 80px 32px
}

.ss-pg .sg-inner {
  max-width: 1280px;
  margin: 0 auto
}

.ss-pg .sg-head {
  margin-bottom: 32px
}

.ss-pg .sg-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: #2a1a2e;
  margin: 0 0 8px;
  font-style: italic
}

.ss-pg .sg-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #4a3350;
  max-width: 560px
}

.ss-pg .sg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px
}

.ss-pg .story-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 1px 4px 18px 0 #ad67b714;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ss-pg .story-card:hover {
  box-shadow: 1px 8px 52px 0 #ad67b71f;
  transform: translateY(-4px)
}

.ss-pg .story-card.wide {
  grid-column: span 2;
  flex-direction: row;
  gap: 32px
}

.ss-pg .story-card.wide .sc-portrait {
  flex: 0 0 120px
}

.ss-pg .story-card.wide .sc-body {
  flex: 1
}

.ss-pg .sc-portrait {
  width: 80px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0
}

.ss-pg .sc-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.ss-pg .sc-portrait.lg {
  width: 120px;
  height: 180px
}

.ss-pg .sc-name {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #2a1a2e;
  margin: 0
}

.ss-pg .sc-role {
  font-size: 16px;
  line-height: 1.5;
  color: #AD67B7;
  margin: 0
}

.ss-pg .sc-divider {
  width: 32px;
  height: 1px;
  background: #D3B4D0;
  margin: 4px 0
}

.ss-pg .sc-quote {
  font-size: 16px;
  line-height: 1.75;
  color: #3d2545;
  margin: 0
}

.ss-pg .sc-detail {
  font-size: 16px;
  line-height: 1.75;
  color: #4a3350;
  margin: 0
}

.ss-pg .story-card.np .sc-initial {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: linear-gradient(135deg, #AD67B7, #D3B4D0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.ss-pg .sc-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.ss-pg .pyr {
  background: #2a1a2e;
  padding: 80px 32px;
  position: relative;
  overflow: hidden
}

.ss-pg .pyr-bg-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background: repeating-linear-gradient(0deg, #ad67b70a 0px, #ad67b70a 1px, transparent 1px, transparent 40px);
  animation: bgpan 18s linear infinite;
  pointer-events: none
}

@keyframes bgpan {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-50%)
  }
}

.ss-pg .pyr-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start
}

.ss-pg .pyr-text {
  flex: 1 1 45%
}

.ss-pg .pyr-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: #fff;
  margin: 0 0 16px;
  font-style: italic
}

.ss-pg .pyr-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #D3B4D0;
  margin: 0 0 16px
}

.ss-pg .pyr-detail {
  font-size: 16px;
  line-height: 1.75;
  color: #c4a8c0;
  margin: 0
}

.ss-pg .pyr-chart {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 16px
}

.ss-pg .pyr-layer {
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ss-pg .pyr-layer:hover {
  transform: scaleX(1.02)
}

.ss-pg .pyr-layer.l1 {
  width: 100%;
  background: #AD67B7
}

.ss-pg .pyr-layer.l2 {
  width: 82%;
  background: #ad67b7bf
}

.ss-pg .pyr-layer.l3 {
  width: 64%;
  background: #ad67b780
}

.ss-pg .pyr-layer.l4 {
  width: 46%;
  background: #ad67b74d
}

.ss-pg .pyr-lbl {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600
}

.ss-pg .pyr-val {
  font-size: 21px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700
}

.ss-pg .pyr-img-wrap {
  position: absolute;
  right: 32px;
  bottom: 0;
  width: 320px;
  pointer-events: none;
  display: none
}

.ss-pg .zz-top {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.ss-pg .zz-top svg {
  display: block;
  width: 100%
}

.ss-pg .chk-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ss-pg .chk-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.75;
  color: #D3B4D0
}

.ss-pg .chk-list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 6px;
  border: 2px solid #AD67B7;
  background: transparent;
  display: block
}

.ss-pg .wide-para {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto
}

@media (max-width: 1280px) {
  .ss-pg .sg-grid {
    grid-template-columns: 1fr 1fr
  }

  .ss-pg .story-card.wide {
    grid-column: span 2
  }
}

@media (max-width: 768px) {
  .ss-pg .tb-inner {
    flex-direction: column
  }

  .ss-pg .tb-img-wrap {
    flex: 0 0 auto;
    width: 100%
  }

  .ss-pg .tb-img-wrap img {
    height: 260px
  }

  .ss-pg .tb-h1 {
    font-size: 37px
  }

  .ss-pg .tb-desc {
    font-size: 16px
  }

  .ss-pg .tb-text {
    padding: 0
  }

  .ss-pg .sg-grid {
    grid-template-columns: 1fr
  }

  .ss-pg .story-card.wide {
    grid-column: span 1;
    flex-direction: column
  }

  .ss-pg .pyr-inner {
    flex-direction: column
  }

  .ss-pg .pyr-layer.l2,
  .ss-pg .pyr-layer.l3,
  .ss-pg .pyr-layer.l4 {
    width: 100%
  }

  .ss-pg .pyr-h2 {
    font-size: 27px
  }

  .ss-pg .sg-h2 {
    font-size: 27px
  }
}

.opn {
  max-width: 100%;
  overflow-x: hidden
}

.opn .pg-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

.opn .s1 {
  position: relative;
  padding: 64px 0 0;
  background: #fff
}

.opn .s1-frame {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative
}

.opn .s1-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #D3B4D0
}

.opn .s1-frame::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #D3B4D0;
  opacity: .5
}

.opn .s1-txt {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 32px 0
}

.opn .s1-tag {
  display: inline-block;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #AD67B7;
  margin-bottom: 16px;
  font-weight: 600
}

.opn .s1-h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1e1e2e;
  margin: 0 0 16px;
  font-weight: 700
}

.opn .s1-h1 .acc {
  color: #AD67B7
}

.opn .s1-sub {
  font-size: 21px;
  line-height: 1.5;
  color: #4a4a5a;
  margin: 0 0 32px
}

.opn .s1-cta {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  border: 2px solid #AD67B7;
  color: #AD67B7;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1), background .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s1-cta::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid #AD67B7;
  border-radius: 6px;
  opacity: 0;
  transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s1-cta:hover {
  background: #AD67B7;
  color: #fff
}

.opn .s1-cta:hover::before {
  opacity: 1
}

.opn .s1-img-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px 18px 0 0;
  overflow: hidden
}

.opn .s1-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #ad67b78c 0%, transparent 60%);
  pointer-events: none
}

.opn .s1-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 1px 8px 52px 0 #ad67b71f
}

.opn .s1-side-pad {
  padding: 0 64px
}

.opn .s2 {
  padding: 80px 0;
  background: linear-gradient(160deg, #f7f0f8 0%, #fff 100%);
  position: relative
}

.opn .s2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #D3B4D0
}

.opn .s2::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: #d3b4d066
}

.opn .s2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start
}

.opn .s2-left {
  flex: 0 0 340px
}

.opn .s2-right {
  flex: 1
}

.opn .s2-label {
  font-size: 16px;
  color: #AD67B7;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 16px;
  display: block
}

.opn .s2-h {
  font-size: 37px;
  line-height: 1.2;
  color: #1e1e2e;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -.01em
}

.opn .s2-h .acc {
  color: #AD67B7
}

.opn .s2-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 1px 4px 18px 0 #ad67b714;
  display: block;
  margin-top: 32px;
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s2-img:hover {
  transform: rotate(1.5deg)
}

.opn .s2-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.opn .s2-step {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.opn .s2-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #AD67B7;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

.opn .s2-step-body {
  padding-top: 4px
}

.opn .s2-step-h {
  font-size: 16px;
  font-weight: 700;
  color: #1e1e2e;
  margin: 0 0 8px
}

.opn .s2-step-p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a5a;
  margin: 0
}

.opn .s3 {
  padding: 80px 0;
  background: #fff;
  position: relative
}

.opn .s3-dbl-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.opn .s3-dbl-top svg {
  display: block;
  width: 100%
}

.opn .s3-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

.opn .s3-head {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center
}

.opn .s3-h {
  font-size: 37px;
  line-height: 1.2;
  color: #1e1e2e;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 16px
}

.opn .s3-h .acc {
  color: #AD67B7
}

.opn .s3-p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a5a;
  margin: 0
}

.opn .s3-split {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 1px 8px 52px 0 #ad67b71f
}

.opn .s3-col-a {
  flex: 1;
  background: #AD67B7;
  padding: 48px 40px
}

.opn .s3-col-b {
  flex: 1;
  background: #f7f0f8;
  padding: 48px 40px
}

.opn .s3-col-h {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.2
}

.opn .s3-col-a .s3-col-h {
  color: #fff
}

.opn .s3-col-b .s3-col-h {
  color: #1e1e2e
}

.opn .s3-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.opn .s3-li {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5
}

.opn .s3-col-a .s3-li {
  color: #ffffffeb
}

.opn .s3-col-b .s3-li {
  color: #4a4a5a
}

.opn .s3-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  margin-top: 2px;
  position: relative
}

.opn .s3-col-a .s3-check {
  background: #ffffff40;
  border: 1.5px solid #fff9
}

.opn .s3-col-b .s3-check {
  background: #D3B4D0;
  border: 1.5px solid #AD67B7
}

.opn .s3-check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 3px;
  width: 7px;
  height: 4px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg)
}

.opn .s3-col-a .s3-check::after {
  border-color: #fff
}

.opn .s3-col-b .s3-check::after {
  border-color: #AD67B7
}

.opn .s4 {
  padding: 80px 0;
  background: #1e1e2e;
  position: relative
}

.opn .s4-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

.opn .s4-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px
}

.opn .s4-txt {
  flex: 1
}

.opn .s4-label {
  font-size: 16px;
  color: #D3B4D0;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 16px;
  display: block
}

.opn .s4-h {
  font-size: 37px;
  line-height: 1.2;
  color: #fff;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 16px
}

.opn .s4-h .acc {
  color: #D3B4D0
}

.opn .s4-p {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffffb8;
  margin: 0
}

.opn .s4-portrait-wrap {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 1px 8px 52px 0 #ad67b71f;
  border: 3px solid #AD67B7
}

.opn .s4-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.opn .s4-quote {
  font-size: 21px;
  line-height: 1.5;
  color: #ffffffd9;
  font-style: italic;
  margin: 0 0 8px
}

.opn .s4-quote-attr {
  font-size: 16px;
  color: #D3B4D0
}

.opn .s4-bars {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.opn .s4-bar-item {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.opn .s4-bar-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #fffc
}

.opn .s4-bar-track {
  height: 8px;
  background: #ffffff1a;
  border-radius: 48px;
  overflow: hidden
}

.opn .s4-bar-fill {
  height: 100%;
  border-radius: 48px;
  background: linear-gradient(90deg, #AD67B7 0%, #D3B4D0 100%);
  transition: width .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s4-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px
}

.opn .s4-card {
  background: #ffffff0f;
  border-radius: 18px;
  padding: 32px;
  box-shadow: inset 1px 1px 6px 0 #ad67b714;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s4-card:hover {
  background: #ffffff1a
}

.opn .s4-card-h {
  font-size: 16px;
  font-weight: 700;
  color: #D3B4D0;
  margin: 0 0 8px
}

.opn .s4-card-p {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffffa6;
  margin: 0
}

.opn .s5 {
  padding: 80px 0;
  background: #fff;
  position: relative
}

.opn .s5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #D3B4D0
}

.opn .s5::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: #d3b4d066
}

.opn .s5-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

.opn .s5-head {
  max-width: 540px;
  margin-bottom: 48px
}

.opn .s5-h {
  font-size: 37px;
  line-height: 1.2;
  color: #1e1e2e;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 16px
}

.opn .s5-h .acc {
  color: #AD67B7
}

.opn .s5-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a5a;
  margin: 0
}

.opn .s5-layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.opn .s5-img-col {
  flex: 0 0 380px
}

.opn .s5-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 1px 4px 18px 0 #ad67b714;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s5-img:hover {
  transform: rotate(-1.2deg)
}

.opn .s5-conds {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.opn .s5-cond {
  border: 1.5px solid #D3B4D0;
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s5-cond:hover {
  border-color: #AD67B7;
  box-shadow: 1px 4px 18px 0 #ad67b714
}

.opn .s5-cond-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #AD67B7;
  margin-top: 6px
}

.opn .s5-cond-txt {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a5a;
  margin: 0
}

.opn .s5-cond-txt strong {
  color: #1e1e2e;
  font-weight: 700
}

.opn .s5-ratio-wrap {
  margin-top: 32px
}

.opn .s5-ratio-label {
  font-size: 16px;
  color: #4a4a5a;
  margin-bottom: 8px
}

.opn .s5-ratio-bar {
  height: 12px;
  border-radius: 48px;
  background: #f0e8f0;
  overflow: hidden;
  position: relative
}

.opn .s5-ratio-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, #AD67B7 0%, #D3B4D0 100%);
  border-radius: 48px
}

.opn .s5-ratio-meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 16px;
  color: #4a4a5a
}

.opn .s6 {
  padding: 80px 0;
  background: linear-gradient(160deg, #f7f0f8 0%, #fff 100%);
  position: relative
}

.opn .s6-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

.opn .s6-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px
}

.opn .s6-h {
  font-size: 37px;
  line-height: 1.2;
  color: #1e1e2e;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 16px
}

.opn .s6-h .acc {
  color: #AD67B7
}

.opn .s6-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a5a;
  margin: 0
}

.opn .s6-cards {
  display: flex;
  flex-direction: row;
  gap: 32px
}

.opn .s6-card {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 1px 4px 18px 0 #ad67b714;
  border: 1.5px solid #D3B4D0;
  position: relative;
  transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s6-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid #D3B4D0;
  border-radius: 10px;
  opacity: 0;
  transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s6-card:hover {
  border-color: #AD67B7;
  box-shadow: 1px 8px 52px 0 #ad67b71f
}

.opn .s6-card:hover::before {
  opacity: 1
}

.opn .s6-card.featured {
  background: #AD67B7;
  border-color: #AD67B7
}

.opn .s6-card.featured::before {
  border-color: #ffffff4d
}

.opn .s6-card.featured:hover::before {
  opacity: 1
}

.opn .s6-card-tag {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
  display: block
}

.opn .s6-card .s6-card-tag {
  color: #AD67B7
}

.opn .s6-card.featured .s6-card-tag {
  color: #fffc
}

.opn .s6-card-h {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px
}

.opn .s6-card .s6-card-h {
  color: #1e1e2e
}

.opn .s6-card.featured .s6-card-h {
  color: #fff
}

.opn .s6-card-p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 24px
}

.opn .s6-card .s6-card-p {
  color: #4a4a5a
}

.opn .s6-card.featured .s6-card-p {
  color: #ffffffd1
}

.opn .s6-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 1px 4px 18px 0 #ad67b714
}

.opn .s6-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  color: #AD67B7;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color .4s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s6-link:hover {
  border-color: #AD67B7
}

.opn .s6-card.featured .s6-link {
  color: #fff;
  border-color: #fff6
}

.opn .s6-card.featured .s6-link:hover {
  border-color: #fff
}

.opn .s6-bottom-img {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center
}

.opn .s6-bi-img {
  flex: 0 0 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 1px 8px 52px 0 #ad67b71f;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .s6-bi-img:hover {
  transform: rotate(1deg)
}

.opn .s6-bi-txt {
  flex: 1
}

.opn .s6-bi-h {
  font-size: 21px;
  font-weight: 700;
  color: #1e1e2e;
  margin: 0 0 16px
}

.opn .s6-bi-p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a5a;
  margin: 0 0 16px
}

.opn .s6-bi-p:last-child {
  margin-bottom: 0
}

@media (max-width: 1280px) {
  .opn .s1-h1 {
    font-size: 37px
  }

  .opn .s6-cards {
    flex-direction: column
  }
}

@media (max-width: 768px) {
  .opn .s1-h1 {
    font-size: 27px
  }

  .opn .s1-img {
    height: 240px
  }

  .opn .s1-side-pad {
    padding: 0 16px
  }

  .opn .s2-inner {
    flex-direction: column;
    gap: 32px
  }

  .opn .s2-left {
    flex: none;
    width: 100%
  }

  .opn .s3-split {
    flex-direction: column
  }

  .opn .s4-top {
    flex-direction: column;
    gap: 32px
  }

  .opn .s4-grid {
    grid-template-columns: 1fr
  }

  .opn .s5-layout {
    flex-direction: column
  }

  .opn .s5-img-col {
    flex: none;
    width: 100%
  }

  .opn .s6-cards {
    flex-direction: column
  }

  .opn .s6-bottom-img {
    flex-direction: column
  }

  .opn .s6-bi-img {
    flex: none;
    width: 100%
  }

  .opn .pg-wrap {
    padding: 0 16px
  }

  .opn .s2-inner,
  .opn .s3-inner,
  .opn .s4-inner,
  .opn .s5-inner,
  .opn .s6-inner {
    padding: 0 16px
  }
}

.ab-us {
  max-width: 100%;
  overflow-x: hidden
}

.ab-us .pg-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

.ab-us .t-blk {
  padding: 96px 32px 48px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 32px;
  align-items: end;
  position: relative
}

.ab-us .t-blk .dec-ring {
  position: absolute;
  right: 80px;
  top: 32px;
  width: 260px;
  height: 260px;
  border-radius: 48px;
  border: 2px solid #ad67b721;
  pointer-events: none;
  z-index: 0;
  transform: rotate(18deg)
}

.ab-us .t-blk .dec-ring-sm {
  position: absolute;
  right: 120px;
  top: 72px;
  width: 160px;
  height: 160px;
  border-radius: 32px;
  border: 1.5px solid #ad67b717;
  pointer-events: none;
  z-index: 0;
  transform: rotate(10deg)
}

.ab-us .t-blk .lft {
  position: relative;
  z-index: 1;
  padding-left: 0
}

.ab-us .t-blk .lft .eyebrow {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #AD67B7;
  margin-bottom: 16px;
  display: block
}

.ab-us .t-blk .lft h1 {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1e1a2e;
  margin: 0;
  font-style: italic
}

.ab-us .t-blk .lft h1 .cap {
  font-style: normal;
  text-transform: uppercase;
  font-size: 52px;
  color: #AD67B7
}

.ab-us .t-blk .rgt {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end
}

.ab-us .t-blk .rgt .img-frame {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: 1px 8px 52px 0 #ad67b71f;
  opacity: .78
}

.ab-us .t-blk .rgt .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.ab-us .div-tri {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0
}

.ab-us .div-tri svg {
  display: block
}

.ab-us .story-sec {
  background: #f5eef7;
  padding: 64px 32px
}

.ab-us .story-sec .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start
}

.ab-us .story-sec .img-col {
  position: relative
}

.ab-us .story-sec .img-col img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
  box-shadow: 1px 4px 18px 0 #ad67b714
}

.ab-us .story-sec .img-col .dec-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #AD67B7;
  color: #fff;
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 1px 4px 18px 0 #ad67b714;
  max-width: 160px
}

.ab-us .story-sec .img-col .dec-badge strong {
  display: block;
  font-size: 27px;
  line-height: 1.2
}

.ab-us .story-sec .txt-col {
  padding: 8px 0 8px 16px
}

.ab-us .story-sec .txt-col h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1e1a2e;
  margin: 0 0 16px;
  font-style: italic
}

.ab-us .story-sec .txt-col .body-narrow {
  max-width: 480px;
  margin: 0 auto 0 0
}

.ab-us .story-sec .txt-col .body-narrow p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3046;
  margin-bottom: 16px
}

.ab-us .div-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0
}

.ab-us .div-dots span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #D3B4D0
}

.ab-us .div-dots span.mid {
  width: 10px;
  height: 10px;
  background: #AD67B7
}

.ab-us .team-sec {
  padding: 64px 32px;
  background: #fff
}

.ab-us .team-sec .inner {
  max-width: 1280px;
  margin: 0 auto
}

.ab-us .team-sec h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1e1a2e;
  margin: 0 0 8px;
  font-style: italic
}

.ab-us .team-sec .sub {
  font-size: 16px;
  line-height: 1.75;
  color: #6a5a78;
  margin-bottom: 32px;
  max-width: 520px
}

.ab-us .team-sec .layout {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 32px;
  align-items: start
}

.ab-us .team-sec .person-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: #faf7fb;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 1px 1px 6px 0 #ad67b714;
  box-shadow: inset 0 2px 8px 0 #ad67b70f 1px 4px 18px 0 #ad67b714;
  transition: box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ab-us .team-sec .person-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 2px 8px 0 #ad67b70f 1px 8px 52px 0 #ad67b71f
}

.ab-us .team-sec .person-card .port {
  width: 96px;
  height: 128px;
  flex-shrink: 0;
  overflow: hidden
}

.ab-us .team-sec .person-card .port img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.ab-us .team-sec .person-card .info h4 {
  font-size: 21px;
  line-height: 1.2;
  color: #1e1a2e;
  margin: 0 0 4px
}

.ab-us .team-sec .person-card .info .role {
  font-size: 16px;
  color: #AD67B7;
  margin-bottom: 16px;
  display: block
}

.ab-us .team-sec .person-card .info p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3046;
  margin: 0
}

.ab-us .team-sec .metrics {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ab-us .team-sec .metric-item {
  background: #faf7fb;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 1px 1px 6px 0 #ad67b714;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1)
}

.ab-us .team-sec .metric-item:hover {
  transform: translateY(-2px)
}

.ab-us .team-sec .metric-item .num {
  font-size: 37px;
  line-height: 1.2;
  color: #AD67B7;
  font-style: italic;
  display: block
}

.ab-us .team-sec .metric-item .lbl {
  font-size: 16px;
  line-height: 1.5;
  color: #6a5a78
}

.ab-us .div-line {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px
}

.ab-us .div-line .ln {
  flex: 1;
  height: 1px;
  background: #D3B4D0;
  opacity: .5
}

.ab-us .div-line .dia {
  width: 8px;
  height: 8px;
  background: #AD67B7;
  border-radius: 6px;
  transform: rotate(45deg)
}

.ab-us .approach-sec {
  background: #f5eef7;
  padding: 64px 32px
}

.ab-us .approach-sec .inner {
  max-width: 1280px;
  margin: 0 auto
}

.ab-us .approach-sec h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1e1a2e;
  margin: 0 0 32px;
  font-style: italic;
  max-width: 640px
}

.ab-us .approach-sec .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px
}

.ab-us .approach-sec .ap-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: inset 0 2px 8px 0 #ad67b70f 1px 4px 18px 0 #ad67b714;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
  position: relative
}

.ab-us .approach-sec .ap-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 2px 8px 0 #ad67b70f 1px 8px 52px 0 #ad67b71f
}

.ab-us .approach-sec .ap-card .face {
  display: block
}

.ab-us .approach-sec .ap-card .back {
  display: none;
  position: absolute;
  inset: 0;
  background: #AD67B7;
  border-radius: 18px;
  padding: 32px;
  color: #fff;
  font-size: 16px;
  line-height: 1.75
}

.ab-us .approach-sec .ap-card:hover .face {
  display: none
}

.ab-us .approach-sec .ap-card:hover .back {
  display: block
}

.ab-us .approach-sec .ap-card .ico {
  width: 40px;
  height: 40px;
  margin-bottom: 16px
}

.ab-us .approach-sec .ap-card h4 {
  font-size: 21px;
  line-height: 1.2;
  color: #1e1a2e;
  margin: 0 0 8px
}

.ab-us .approach-sec .ap-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3046;
  margin: 0
}

.ab-us .approach-sec .img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.ab-us .approach-sec .img-row img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 1px 4px 18px 0 #ad67b714;
  display: block
}

@media (max-width: 1280px) {
  .ab-us .t-blk {
    padding: 72px 32px 40px
  }

  .ab-us .t-blk .lft h1 {
    font-size: 52px
  }

  .ab-us .t-blk .lft h1 .cap {
    font-size: 37px
  }
}

@media (max-width: 768px) {
  .ab-us .t-blk {
    grid-template-columns: 1fr;
    padding: 48px 16px 32px
  }

  .ab-us .t-blk .rgt {
    display: none
  }

  .ab-us .t-blk .lft h1 {
    font-size: 37px
  }

  .ab-us .t-blk .lft h1 .cap {
    font-size: 27px
  }

  .ab-us .t-blk .dec-ring,
  .ab-us .t-blk .dec-ring-sm {
    display: none
  }

  .ab-us .story-sec .inner {
    grid-template-columns: 1fr
  }

  .ab-us .story-sec .img-col .dec-badge {
    right: 0;
    bottom: 8px
  }

  .ab-us .story-sec .txt-col {
    padding: 32px 0 0
  }

  .ab-us .team-sec .layout {
    grid-template-columns: 1fr
  }

  .ab-us .team-sec .person-card {
    flex-direction: column
  }

  .ab-us .approach-sec .grid {
    grid-template-columns: 1fr
  }

  .ab-us .approach-sec .img-row {
    grid-template-columns: 1fr
  }

  .ab-us .pg-wrap,
  .ab-us .story-sec,
  .ab-us .team-sec,
  .ab-us .approach-sec {
    padding-left: 16px;
    padding-right: 16px
  }
}

.cu-pg {
  background: #fff;
  overflow-x: clip
}

.cu-pg *,
.cu-pg ::before,
.cu-pg ::after {
  box-sizing: border-box
}

.cu-pg ::selection {
  background: #d0d0d0;
  color: #1a1a1a
}

.cu-pg .split-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  padding-top: 80px
}

.cu-pg .split-left {
  background: #AD67B7;
  padding: 80px 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden
}

.cu-pg .split-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .35
}

.cu-pg .split-right {
  background: #D3B4D0;
  padding: 80px 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.cu-pg .pg-eyebrow {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffffbf;
  margin: 0 0 16px
}

.cu-pg .pg-h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 16px;
  font-style: italic
}

.cu-pg .pg-h1 .up {
  font-style: normal;
  text-transform: uppercase;
  font-size: 37px
}

.cu-pg .pg-lead {
  font-size: 21px;
  line-height: 1.5;
  color: #ffffffe0;
  margin: 0
}

.cu-pg .right-deck {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.cu-pg .contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.cu-pg .contact-label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6b4270;
  margin: 0
}

.cu-pg .contact-val {
  font-size: 21px;
  line-height: 1.5;
  color: #2d1a35;
  margin: 0;
  text-decoration: none;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.cu-pg .contact-val:hover {
  color: #AD67B7
}

.cu-pg .contact-val.addr {
  font-size: 16px;
  line-height: 1.75
}

.cu-pg .diag-divider {
  height: 48px;
  background: linear-gradient(168deg, #D3B4D0 50%, #f5f0f6 50%)
}

.cu-pg .form-belt {
  background: #f5f0f6;
  padding: 64px 32px
}

.cu-pg .form-inner {
  max-width: 720px;
  margin: 0 auto
}

.cu-pg .form-head {
  margin: 0 0 32px
}

.cu-pg .form-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: #2d1a35;
  margin: 0 0 8px;
  font-style: italic
}

.cu-pg .form-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #5a3d65;
  margin: 0
}

.cu-pg .form-accent {
  display: block;
  width: 48px;
  height: 2px;
  background: #AD67B7;
  margin: 16px 0 0;
  letter-spacing: .2em
}

.cu-pg .cf {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cu-pg .field-row {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cu-pg .field-row label {
  font-size: 16px;
  line-height: 1.5;
  color: #2d1a35;
  letter-spacing: .04em
}

.cu-pg .field-row input[type="email"],
.cu-pg .field-row textarea {
  background: #fff;
  border: 1.5px solid #c9a8d4;
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #2d1a35;
  width: 100%;
  outline: none;
  transition: border-color .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 1px 1px 6px 0 #ad67b714
}

.cu-pg .field-row input[type="email"]:focus,
.cu-pg .field-row textarea:focus {
  border-color: #AD67B7;
  box-shadow: 1px 4px 18px 0 #ad67b714
}

.cu-pg .field-row input::placeholder,
.cu-pg .field-row textarea::placeholder {
  color: #b89ec2
}

.cu-pg .field-row textarea {
  resize: vertical;
  min-height: 120px
}

.cu-pg .budget-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cu-pg .budget-label {
  font-size: 16px;
  line-height: 1.5;
  color: #2d1a35;
  letter-spacing: .04em
}

.cu-pg .budget-opts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px
}

.cu-pg .budget-opts input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.cu-pg .budget-opts label {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 32px;
  border: 1.5px solid #c9a8d4;
  font-size: 16px;
  line-height: 1.5;
  color: #5a3d65;
  cursor: pointer;
  background: #fff;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1), color .2s ease-in-out;
  user-select: none
}

.cu-pg .budget-opts input[type="radio"]:checked+label {
  background: #AD67B7;
  border-color: #AD67B7;
  color: #fff
}

.cu-pg .budget-opts label:hover {
  border-color: #AD67B7;
  color: #AD67B7
}

.cu-pg .budget-opts input[type="radio"]:checked+label:hover {
  color: #fff
}

.cu-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.cu-pg .privacy-row input[type="checkbox"] {
  margin-top: 4px;
  accent-color: #AD67B7;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer
}

.cu-pg .privacy-row span {
  font-size: 16px;
  line-height: 1.75;
  color: #5a3d65
}

.cu-pg .privacy-row a {
  color: #AD67B7;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .4s ease-in-out
}

.cu-pg .privacy-row a:hover {
  color: #7a3f88
}

.cu-pg .submit-btn {
  align-self: flex-start;
  background: #AD67B7;
  color: #fff;
  border: 2px solid #AD67B7;
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  letter-spacing: .06em;
  position: relative;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), color .5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 1px 4px 18px 0 #ad67b714
}

.cu-pg .submit-btn::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 6px;
  border: 1.5px solid #fff0;
  transition: border-color .45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none
}

.cu-pg .submit-btn:hover {
  background: #7a3f88;
  border-color: #7a3f88
}

.cu-pg .submit-btn:hover::after {
  border-color: #ffffff73
}

.cu-pg .submit-btn:focus {
  outline: 3px solid #AD67B7;
  outline-offset: 3px
}

.cu-pg .diag-divider2 {
  height: 48px;
  background: linear-gradient(168deg, #f5f0f6 50%, #2d1a35 50%)
}

.cu-pg .tier-belt {
  background: #2d1a35;
  padding: 64px 32px
}

.cu-pg .tier-inner {
  max-width: 1280px;
  margin: 0 auto
}

.cu-pg .tier-head {
  margin: 0 0 32px
}

.cu-pg .tier-h2 {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: #D3B4D0;
  margin: 0 0 8px;
  font-style: italic
}

.cu-pg .tier-h2 .up {
  font-style: normal;
  text-transform: uppercase
}

.cu-pg .tier-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #d3b4d0b3;
  margin: 0;
  max-width: 560px
}

.cu-pg .tier-accent {
  display: block;
  width: 48px;
  height: 2px;
  background: #AD67B7;
  margin: 16px 0 0
}

.cu-pg .tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.cu-pg .tier-card {
  background: #ad67b71a;
  border: 1.5px solid #ad67b738;
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: inset 1px 1px 6px 0 #ad67b714;
  transition: border-color .6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1);
  animation: card-bounce .7s cubic-bezier(0.22, 1, 0.36, 1) both
}

.cu-pg .tier-card:nth-child(1) {
  animation-delay: .05s
}

.cu-pg .tier-card:nth-child(2) {
  animation-delay: .15s
}

.cu-pg .tier-card:nth-child(3) {
  animation-delay: .25s
}

@keyframes card-bounce {
  0% {
    opacity: 0;
    transform: translateY(24px) scaleY(0.96)
  }

  70% {
    opacity: 1;
    transform: translateY(-6px) scaleY(1.01)
  }

  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1)
  }
}

.cu-pg .tier-card:hover {
  border-color: #AD67B7;
  box-shadow: inset 1px 1px 6px 0 #ad67b714 1px 8px 52px 0 #ad67b71f
}

.cu-pg .tier-card.featured {
  background: #ad67b738;
  border-color: #AD67B7
}

.cu-pg .tier-name {
  font-size: 21px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: .03em
}

.cu-pg .tier-price {
  font-size: 37px;
  line-height: 1.2;
  color: #D3B4D0;
  margin: 0;
  letter-spacing: -.02em
}

.cu-pg .tier-price span {
  font-size: 16px;
  color: #d3b4d099;
  letter-spacing: 0
}

.cu-pg .tier-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cu-pg .tier-feats li {
  font-size: 16px;
  line-height: 1.75;
  color: #d3b4d0cc;
  padding-left: 24px;
  position: relative
}

.cu-pg .tier-feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 6px;
  border: 2px solid #AD67B7;
  background: transparent
}

.cu-pg .tier-feats li.active::before {
  background: #AD67B7
}

.cu-pg .tier-badge {
  display: inline-block;
  background: #AD67B7;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding: 4px 16px;
  border-radius: 32px;
  letter-spacing: .08em;
  align-self: flex-start
}

@media (max-width: 1280px) {
  .cu-pg .split-top {
    grid-template-columns: 1fr 1fr
  }

  .cu-pg .tier-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width: 768px) {
  .cu-pg .split-top {
    grid-template-columns: 1fr;
    padding-top: 0
  }

  .cu-pg .split-left {
    padding: 48px 32px 32px
  }

  .cu-pg .split-right {
    padding: 32px 32px 48px
  }

  .cu-pg .pg-h1 {
    font-size: 37px
  }

  .cu-pg .tier-grid {
    grid-template-columns: 1fr
  }

  .cu-pg .form-h2,
  .cu-pg .tier-h2 {
    font-size: 27px
  }

  .cu-pg .budget-opts {
    flex-direction: column
  }

  .cu-pg .submit-btn {
    align-self: stretch;
    text-align: center
  }
}

.suc-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: linear-gradient(160deg, #f5eef7 0%, #fff 100%)
}

.suc-pg .card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 1px 8px 52px 0 #ad67b71f;
  padding: 32px;
  max-width: 560px;
  width: 100%;
  text-align: center
}

.suc-pg .card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 48px;
  background: linear-gradient(145deg, #D3B4D0 0%, #AD67B7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 1px 4px 18px 0 #ad67b714
}

.suc-pg .card .icon-wrap svg {
  width: 36px;
  height: 36px
}

.suc-pg .card .ttl {
  font-size: 37px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #2b1a2e;
  margin: 0 0 16px;
  font-style: italic
}

.suc-pg .card .sub {
  font-size: 16px;
  line-height: 1.75;
  color: #4a3550;
  margin: 0 0 32px
}

.suc-pg .card .btn-home {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background: #AD67B7;
  border-radius: 10px;
  padding: 16px 32px;
  text-decoration: none;
  border: 2px solid #AD67B7;
  transition: background .45s cubic-bezier(0.22, 1, 0.36, 1), color .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s ease-in-out;
  position: relative
}

.suc-pg .card .btn-home::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 8px;
  border: 1.5px solid #fff0;
  transition: border-color .35s cubic-bezier(0.22, 1, 0.36, 1)
}

.suc-pg .card .btn-home:hover {
  background: #8f4d9a;
  box-shadow: 1px 4px 18px 0 #ad67b714
}

.suc-pg .card .btn-home:hover::after {
  border-color: #ffffff73
}

.suc-pg .card .btn-home:focus {
  outline: 2px solid #AD67B7;
  outline-offset: 4px
}

.suc-pg .card .divider {
  width: 48px;
  height: 3px;
  border-radius: 6px;
  background: linear-gradient(90deg, #D3B4D0, #AD67B7);
  margin: 0 auto 32px
}

@media (max-width: 768px) {
  .suc-pg .card {
    padding: 32px 16px
  }

  .suc-pg .card .ttl {
    font-size: 27px
  }
}