/* [project]/components/landing/landing.css [app-client] (css) */
.lp-h2 {
  color: var(--sage-deep);
  letter-spacing: -.01em;
  text-wrap: balance;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.06;
}

.lp-lede {
  color: var(--ink-soft);
  text-wrap: pretty;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
}

.lp-body-lg {
  color: var(--ink-soft);
  text-wrap: pretty;
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
}

.lp-fineprint {
  color: var(--ink-faint);
  margin: 0;
  font-size: 13.5px;
}

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

.lp-btn-solid:hover {
  box-shadow: 0 14px 30px -10px #b1633fb3;
}

.lp-btn:active {
  transform: translateY(0);
}

.lp-nav {
  z-index: 100;
  border-bottom: 1px solid #0000;
  transition: background .35s, box-shadow .35s, border-color .35s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.lp-nav.solid {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
  box-shadow: var(--sh-sm);
}

.lp-nav-inner {
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  height: 70px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
}

.lp-brand {
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

.lp-brand-logo {
  width: auto;
  height: 46px;
  transition: filter .35s;
}

.lp-nav:not(.solid) .lp-brand-logo {
  filter: brightness(0) invert() opacity(.94);
}

.lp-nav-links {
  gap: 28px;
  margin: 0 auto;
  display: flex;
}

.lp-nav-links a {
  color: #f7f4ecdb;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s;
  position: relative;
}

.lp-nav.solid .lp-nav-links a {
  color: var(--ink-soft);
}

.lp-nav-links a:after {
  content: "";
  background: var(--terra);
  border-radius: 2px;
  height: 2px;
  transition: right .25s;
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 100%;
}

.lp-nav-links a:hover {
  color: #fff;
}

.lp-nav.solid .lp-nav-links a:hover {
  color: var(--sage-deep);
}

.lp-nav-links a:hover:after {
  right: 0;
}

.lp-nav.solid .lp-nav-links a.on {
  color: var(--sage-deep);
}

.lp-nav-links a.on:after {
  right: 0;
}

.lp-nav-right {
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  display: flex;
}

.lp-lang {
  background: #ffffff29;
  border-radius: 999px;
  padding: 3px;
  display: inline-flex;
}

.lp-nav.solid .lp-lang {
  background: var(--sand);
}

.lp-lang button {
  color: #f7f4ecb3;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
}

.lp-nav.solid .lp-lang button {
  color: var(--ink-faint);
}

.lp-lang button.on {
  color: var(--sage-deep);
  box-shadow: var(--sh-sm);
  background: #fff;
}

.lp-nav-cta {
  background: var(--terra);
  color: #fff;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 8px 20px -8px #b1633f99;
}

.lp-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px #b1633fb3;
}

.lp-burger {
  color: #f7f4ece6;
  padding: 6px;
  display: none;
}

.lp-nav.solid .lp-burger {
  color: var(--ink);
}

.lp-mobile-menu {
  display: none;
}

.lp-hero {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 132px 0 0;
  position: relative;
  overflow: hidden;
}

.lp-hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp-hero-bg:before {
  content: "";
  background: radial-gradient(120% 90% at 18% 0, #6a7547 0%, #0000 55%), radial-gradient(100% 80% at 100% 100%, #4d5634 0%, #0000 60%), linear-gradient(160deg, #5f6a3e 0%, #525c36 100%);
  position: absolute;
  inset: 0;
}

.lp-hero-glow {
  filter: blur(70px);
  opacity: .5;
  border-radius: 50%;
  position: absolute;
}

.lp-hero-glow-1 {
  background: radial-gradient(circle, var(--terra) 0%, transparent 70%);
  opacity: .35;
  width: 460px;
  height: 460px;
  top: -120px;
  right: -60px;
}

.lp-hero-glow-2 {
  opacity: .3;
  background: radial-gradient(circle, #b9bf94 0%, #0000 70%);
  width: 380px;
  height: 380px;
  bottom: -140px;
  left: -80px;
}

.lp-hero-seal {
  opacity: .8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
}

.lp-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.lp-hero-eyebrow {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-soft);
  background: #ffffff0f;
  border: 1px solid #fff3;
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.lp-dot {
  background: var(--terra);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px #c19a4340;
}

.lp-hero-title {
  letter-spacing: -.015em;
  color: var(--cream);
  margin: 0 0 24px;
  font-size: clamp(46px, 7.4vw, 92px);
  font-weight: 500;
  line-height: 1;
}

.lp-hero-sub {
  color: #f7f4ecd1;
  text-wrap: pretty;
  max-width: 520px;
  margin: 0 0 34px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.62;
  animation: .8s cubic-bezier(.2, .7, .3, 1) .42s both anima-fade-up;
}

.lp-hero-cta {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
  animation: .8s cubic-bezier(.2, .7, .3, 1) .54s both anima-fade-up;
  display: flex;
}

.lp-hero-stats {
  align-items: center;
  gap: 26px;
  animation: .8s cubic-bezier(.2, .7, .3, 1) .66s both anima-fade-up;
  display: flex;
}

.lp-stat {
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.lp-stat strong {
  color: var(--cream);
  font-size: 26px;
  font-weight: 700;
  font-family: var(--sans);
  line-height: 1;
}

.lp-stat span {
  color: #f7f4ec99;
  font-size: 12.5px;
}

.lp-stat-div {
  background: #ffffff2e;
  width: 1px;
  height: 34px;
}

.lp-hero-split .lp-hero-inner {
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
  padding-top: 6px;
  padding-bottom: 110px;
  display: grid;
}

.lp-hero-media {
  position: relative;
}

.lp-hero-frame {
  aspect-ratio: 4 / 4.6;
  background: #ffffff0d;
  border-radius: 28px;
  width: 100%;
  animation: 1s cubic-bezier(.2, .7, .3, 1) .3s both anima-fade-up;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px #0000008c, 0 0 0 1px #ffffff1a;
}

.lp-hero-quote {
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--sh-lg);
  border-radius: 16px;
  max-width: 220px;
  padding: 14px 18px;
  animation: .6s cubic-bezier(.2, .8, .3, 1.1) .9s both anima-pop;
  position: absolute;
  bottom: 38px;
  left: -26px;
}

.lp-hero-quote p {
  font-family: var(--serif);
  color: var(--sage-deep);
  margin: 7px 0 0;
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
}

.lp-hero-seal2 {
  opacity: .9;
  animation: 1s 1.1s both anima-bloom-in;
  position: absolute;
  top: -28px;
  right: -22px;
}

.lp-hero-centered .lp-hero-inner {
  text-align: center;
  max-width: 860px;
  padding-top: 18px;
}

.lp-hero-centered .lp-hero-copy {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.lp-hero-centered .lp-hero-sub {
  max-width: 600px;
}

.lp-hero-centered .lp-hero-stats {
  justify-content: center;
}

.lp-hero-strip {
  max-width: 1040px;
  margin: 56px auto 0;
  padding: 0 32px 96px;
  position: relative;
}

.lp-hero-centered .lp-hero-strip .lp-hero-frame {
  aspect-ratio: 16 / 7;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -10px 60px -20px #00000080, 0 0 0 1px #ffffff1a;
}

.lp-hero-centered .lp-hero-quote {
  bottom: 28px;
  left: auto;
  right: 22px;
}

.lp-hero-centered .lp-hero-seal2 {
  display: none;
}

.lp-scroll-hint {
  z-index: 5;
  animation: 2s ease-in-out infinite alternate anima-fade-up;
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
}

.lp-hero-immersive {
  height: 100vh;
  min-height: 660px;
  padding: 0;
}

.lp-hero-immersive .lp-hero-scrim {
  z-index: 1;
  background: linear-gradient(100deg, #1c2010c2 0%, #1c201057 46%, #1c20100d 74%);
  position: absolute;
  inset: 0;
}

.lp-hero-immersive .lp-hero-inner {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 96px;
  padding-bottom: clamp(64px, 11vh, 128px);
  display: flex;
  position: relative;
}

.lp-hero-immersive .lp-hero-copy {
  max-width: 640px;
}

.lp-hero-immersive .lp-hero-sub {
  max-width: 480px;
  margin-bottom: 34px;
}

.lp-hero-glass {
  z-index: 3;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 18px;
  padding: 18px 26px;
  position: absolute;
  bottom: clamp(24px, 4vw, 56px);
  right: clamp(24px, 4vw, 56px);
}

.lp-hero-glass .lp-hero-stats {
  margin-top: 0;
}

@media (max-width: 720px) {
  .lp-hero-glass {
    display: none;
  }

  .lp-hero-immersive {
    height: auto;
    min-height: 88vh;
  }
}

.lp-hero-atmosphere {
  align-items: center;
  min-height: 92vh;
  padding: 128px 0 96px;
  display: flex;
}

.lp-hero-atmosphere .lp-hero-bg:before {
  background: radial-gradient(120% 130% at 90% 32%, #d8d0ac8c 0%, #d8d0ac00 50%), radial-gradient(90% 90% at 4% 4%, #363f21 0%, #0000 52%), linear-gradient(104deg, #2c3619 0%, #3f4a28 40%, #6a7547 100%);
}

.lp-hero-atmosphere .lp-hero-inner {
  width: 100%;
}

.lp-hero-atmosphere .lp-hero-copy {
  max-width: 560px;
}

.lp-hero-mandala {
  opacity: .95;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: -19%;
  transform: translateY(-50%);
}

.lp-hero-rays {
  background: repeating-linear-gradient(101deg, #0000 0 44px, #f7f4ec0e 44px 46px);
  position: absolute;
  inset: 0;
  -webkit-mask: linear-gradient(101deg, #0000 42%, #000 90%);
  mask: linear-gradient(101deg, #0000 42%, #000 90%);
}

.lp-hero-stars {
  background-image: radial-gradient(1.5px 1.5px at 58% 16%, #f7f4ecbf, #0000), radial-gradient(1.3px 1.3px at 71% 60%, #f7f4ec8c, #0000), radial-gradient(1.2px 1.2px at 82% 34%, #f7f4ec99, #0000), radial-gradient(1.6px 1.6px at 64% 74%, #f7f4ec80, #0000), radial-gradient(1.1px 1.1px at 90% 52%, #f7f4ec8c, #0000), radial-gradient(1.4px 1.4px at 76% 22%, #f7f4ec80, #0000), radial-gradient(1.2px 1.2px at 52% 44%, #f7f4ec66, #0000), radial-gradient(1.5px 1.5px at 86% 78%, #f7f4ec80, #0000), radial-gradient(1.1px 1.1px at 67% 40%, #f7f4ec6b, #0000), radial-gradient(1.3px 1.3px at 94% 26%, #f7f4ec73, #0000), radial-gradient(1.2px 1.2px at 60% 88%, #f7f4ec66, #0000), radial-gradient(1.4px 1.4px at 79% 90%, #f7f4ec61, #0000);
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
}

.lp-hero-orb {
  pointer-events: none;
  background: radial-gradient(circle at 34% 32%, #f7f4ec4d, #f7f4ec05 70%);
  border-radius: 50%;
  position: absolute;
}

.lp-hero-orb-1 {
  opacity: .85;
  width: 92px;
  height: 92px;
  top: 16%;
  right: 30%;
}

.lp-hero-orb-2 {
  opacity: .7;
  width: 52px;
  height: 52px;
  top: 42%;
  right: 13%;
}

.lp-hero-orb-3 {
  opacity: .5;
  width: 138px;
  height: 138px;
  bottom: 12%;
  right: 25%;
}

.lp-hero-leaves {
  opacity: .9;
  pointer-events: none;
  width: clamp(180px, 20vw, 300px);
  height: auto;
  position: absolute;
  bottom: -18px;
  right: -10px;
}

.lp-hero-corner-stats {
  z-index: 4;
  opacity: .78;
  position: absolute;
  bottom: clamp(26px, 5vh, 52px);
  right: clamp(24px, 4vw, 56px);
}

.lp-hero-corner-stats .lp-hero-stats {
  gap: 20px;
  margin-top: 0;
}

.lp-hero-corner-stats .lp-stat strong {
  font-size: 22px;
}

@media (max-width: 820px) {
  .lp-hero-mandala {
    right: -40%;
  }

  .lp-hero-corner-stats {
    display: none;
  }

  .lp-hero-atmosphere {
    min-height: 84vh;
  }
}

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

.lp-svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  flex-direction: column;
  height: 100%;
  padding: 32px 30px 30px;
  transition: transform .3s cubic-bezier(.2, .7, .3, 1), box-shadow .3s, border-color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.lp-svc-card:before {
  content: "";
  background: var(--c);
  transform-origin: 0;
  height: 4px;
  transition: transform .35s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.lp-svc-card:hover {
  box-shadow: var(--sh-lg);
  border-color: #0000;
  transform: translateY(-6px);
}

.lp-svc-card:hover:before {
  transform: scaleX(1);
}

.lp-svc-glyph {
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  display: flex;
}

.lp-svc-tag {
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
}

.lp-svc-name {
  color: var(--sage-deep);
  margin: 0 0 12px;
  font-size: 27px;
  font-weight: 600;
}

.lp-svc-body {
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.62;
}

.lp-svc-points {
  flex-direction: column;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
}

.lp-svc-points li {
  color: var(--ink);
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
}

.lp-tick {
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.lp-svc-link {
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-size: 14.5px;
  font-weight: 700;
  transition: gap .2s;
  display: inline-flex;
}

.lp-svc-link:hover {
  gap: 12px;
}

.lp-about {
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 64px;
  display: grid;
}

.lp-about-media {
  position: relative;
}

.lp-about-frame {
  aspect-ratio: 4 / 4.7;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  background: var(--sand);
  overflow: hidden;
}

.lp-about-badge {
  background: var(--paper);
  width: 96px;
  height: 96px;
  box-shadow: var(--sh-md);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: -24px;
  right: -18px;
}

.lp-creds {
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin: 28px 0;
  display: grid;
}

.lp-cred {
  color: var(--ink);
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
}

.lp-sign {
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  display: flex;
}

.lp-sign-txt {
  color: var(--ink-faint);
  font-size: 14px;
}

.lp-sign-name {
  color: var(--sage-deep);
  font-size: 34px;
  line-height: 1;
}

.lp-gal {
  grid-template-columns: 1.55fr 1fr;
  align-items: stretch;
  gap: 18px;
  display: grid;
}

.lp-gal-col {
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  display: grid;
}

.lp-gal-detail {
  height: 100%;
}

.lp-gal-frame {
  box-shadow: var(--sh-lg);
  background: var(--sand);
  border-radius: 18px;
  height: 100%;
  overflow: hidden;
}

.lp-gal-wide .lp-gal-frame {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  box-shadow: 0 24px 48px -24px #4a3a2a59;
}

.lp-gal-detail .lp-gal-frame {
  aspect-ratio: 4 / 2.9;
}

.lp-gal-strip {
  margin-top: 18px;
}

.lp-gal-strip .lp-gal-frame {
  aspect-ratio: 21 / 8;
  border-radius: 22px;
  box-shadow: 0 24px 48px -24px #4a3a2a59;
}

.lp-gal-frame img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
  display: block;
}

.lp-gal-frame:hover img {
  transform: scale(1.02);
}

@media (max-width: 720px) {
  .lp-gal {
    grid-template-columns: 1fr;
  }

  .lp-gal-col {
    grid-template-rows: none;
  }
}

.lp-rating-pill {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  color: var(--ink-soft);
  border-radius: 999px;
  align-items: center;
  gap: 11px;
  padding: 10px 22px;
  font-size: 14.5px;
  display: inline-flex;
}

.lp-rating-pill strong {
  color: var(--ink);
  font-size: 16px;
}

.lp-reviews {
  columns: 3;
  column-gap: 24px;
}

.lp-review {
  break-inside: avoid;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  margin: 0 0 24px;
  padding: 26px;
  transition: transform .3s, box-shadow .3s;
}

.lp-review:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.lp-review-text {
  font-family: var(--serif);
  color: var(--ink);
  text-wrap: pretty;
  margin: 14px 0 20px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.46;
}

.lp-review-foot {
  align-items: center;
  gap: 12px;
  display: flex;
}

.lp-review-av {
  color: #fff;
  width: 42px;
  height: 42px;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--serif);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.lp-review-meta {
  flex-direction: column;
  gap: 1px;
  display: flex;
}

.lp-review-name {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
}

.lp-review-city {
  color: var(--ink-faint);
  font-size: 12.5px;
}

.lp-video-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 48px;
  display: flex;
}

.lp-video-head > div:first-child {
  max-width: 600px;
}

.lp-video-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  display: grid;
}

.lp-video-card {
  flex-direction: column;
  text-decoration: none;
  transition: transform .3s;
  display: flex;
}

.lp-video-card:hover {
  transform: translateY(-5px);
}

.lp-video-thumb {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  background: #ffffff0f;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px -18px #0000008c;
}

.lp-video-grad {
  pointer-events: none;
  background: linear-gradient(#0000 40%, #14170f8c 100%);
  position: absolute;
  inset: 0;
}

.lp-video-play {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #ffffff29;
  border: 1.5px solid #fff9;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  padding-left: 4px;
  transition: transform .3s, background .3s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lp-video-card:hover .lp-video-play {
  background: var(--terra);
  border-color: var(--terra);
  transform: translate(-50%, -50%)scale(1.1);
}

.lp-video-len {
  color: #fff;
  background: #0000008c;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11.5px;
  font-weight: 700;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.lp-video-tag {
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--paper);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: 10px;
  left: 10px;
}

.lp-video-title {
  color: var(--cream);
  margin-bottom: 8px;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
}

.lp-video-cta {
  color: var(--sage-soft);
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.lp-read-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 44px;
  display: flex;
}

.lp-read-all {
  color: var(--terra-deep);
  white-space: nowrap;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: gap .2s;
  display: inline-flex;
}

.lp-read-all:hover {
  gap: 12px;
}

.lp-tabs {
  background: var(--sand);
  border-radius: 999px;
  padding: 4px;
  display: flex;
  position: relative;
}

.lp-tabs-thumb {
  background: var(--paper);
  width: calc(33.3333% - 2.66667px);
  box-shadow: var(--sh-sm);
  border-radius: 999px;
  transition: left .25s cubic-bezier(.3, .7, .4, 1);
  position: absolute;
  top: 4px;
  bottom: 4px;
}

.lp-tab {
  z-index: 1;
  color: var(--ink-faint);
  border-radius: 999px;
  padding: 11px 26px;
  font-size: 14.5px;
  font-weight: 700;
  transition: color .25s;
  position: relative;
}

.lp-tab.on {
  color: var(--sage-deep);
}

.lp-price-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  display: grid;
}

.lp-price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 34px 30px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  position: relative;
}

.lp-price-card.featured {
  border-color: var(--c);
  box-shadow: 0 24px 60px -28px color-mix(in srgb, var(--c) 55%, transparent);
  transform: scale(1.03);
}

.lp-price-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
}

.lp-price-card.featured:hover {
  transform: scale(1.03)translateY(-5px);
}

.lp-price-badge {
  color: #fff;
  letter-spacing: .04em;
  white-space: nowrap;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 700;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}

.lp-price-name {
  color: var(--sage-deep);
  margin: 0 0 16px;
  font-size: 21px;
  font-weight: 600;
}

.lp-price-amt {
  align-items: baseline;
  gap: 5px;
  margin-bottom: 8px;
  display: flex;
}

.lp-price-num {
  color: var(--ink);
  font-size: 52px;
  font-weight: 700;
  font-family: var(--sans);
  line-height: 1;
}

.lp-price-cur {
  color: var(--ink-faint);
  font-size: 17px;
  font-weight: 700;
}

.lp-price-sess {
  color: var(--ink-soft);
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 14px;
  display: flex;
}

.lp-price-save {
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.lp-price-btn {
  border: 1.5px solid;
  border-radius: 999px;
  width: 100%;
  margin-top: auto;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  transition: all .2s;
}

.lp-price-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.lp-social-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: grid;
}

.lp-social-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
}

.lp-social-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--sc);
  transform: translateY(-4px);
}

.lp-social-ic {
  border-radius: 14px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  display: flex;
}

.lp-social-meta {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.lp-social-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.lp-social-handle {
  color: var(--ink-faint);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
  overflow: hidden;
}

.lp-social-card:hover .lp-social-arr {
  transform: translateX(3px);
}

.lp-social-arr {
  transition: transform .2s;
}

.lp-faq {
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 56px;
  display: grid;
}

.lp-faq-aside {
  position: sticky;
  top: 100px;
}

.lp-faq-seal {
  margin-top: 30px;
}

.lp-faq-list {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.lp-faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .25s, box-shadow .25s;
  overflow: hidden;
}

.lp-faq-item.open {
  border-color: var(--sage-soft);
  box-shadow: var(--sh-sm);
}

.lp-faq-q {
  text-align: left;
  width: 100%;
  color: var(--ink);
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  font-size: 16.5px;
  font-weight: 700;
  display: flex;
}

.lp-faq-ic {
  background: var(--sage-wash);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: background .25s;
  display: flex;
}

.lp-faq-item.open .lp-faq-ic {
  background: var(--sage-tint);
}

.lp-faq-a {
  transition: max-height .35s cubic-bezier(.3, .7, .4, 1);
  overflow: hidden;
}

.lp-faq-a p {
  color: var(--ink-soft);
  margin: 0;
  padding: 0 24px 24px;
  font-size: 15.5px;
  line-height: 1.66;
}

.lp-news {
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
}

.lp-news-input {
  border: 1.5px solid var(--line-2);
  background: var(--paper);
  height: 52px;
  color: var(--ink);
  border-radius: 999px;
  outline: none;
  flex: 1;
  padding: 0 20px;
  font-size: 15px;
  transition: border-color .2s;
}

.lp-news-input:focus {
  border-color: var(--sage-soft);
}

.lp-contact-done {
  background: var(--sage-wash);
  border: 1px solid var(--sage-soft);
  color: var(--sage-deep);
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.lp-contact-or {
  max-width: 280px;
  color: var(--ink-faint);
  align-items: center;
  gap: 14px;
  margin: 26px auto 18px;
  font-size: 13px;
  display: flex;
}

.lp-contact-or:before, .lp-contact-or:after {
  content: "";
  background: var(--line-2);
  flex: 1;
  height: 1px;
}

.lp-contact-mail {
  color: var(--sage-deep);
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.lp-contact-mail:hover {
  color: var(--terra);
}

.lp-enter-seal {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lp-enter-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  position: relative;
}

.lp-enter-card {
  border-radius: var(--r-xl);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #ffffff12;
  border: 1px solid #ffffff29;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 32px;
  display: flex;
}

.lp-enter-card.featured {
  background: #ffffff1f;
  border-color: #ffffff47;
}

.lp-enter-ic {
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  display: flex;
}

.lp-enter-name {
  color: var(--cream);
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
}

.lp-enter-sub {
  color: #f7f4ecbd;
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.5;
}

.lp-footer {
  color: #f7f4eccc;
  background: #4d5634;
  padding: 64px 0 28px;
}

.lp-footer-inner {
  border-bottom: 1px solid #ffffff1f;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 40px;
  display: flex;
}

.lp-footer-brand {
  max-width: 320px;
}

.lp-footer-logo {
  filter: brightness(0) invert() opacity(.92);
  width: auto;
  height: 50px;
  margin-bottom: 16px;
}

.lp-footer-brand p {
  color: #f7f4ecb3;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
}

.lp-footer-social {
  gap: 10px;
  display: flex;
}

.lp-footer-social a {
  color: #f7f4ecd9;
  background: #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  transition: background .25s, color .25s, transform .25s;
  display: flex;
}

.lp-footer-social a:hover {
  color: var(--sc);
  background: #fff;
  transform: translateY(-3px);
}

.lp-footer-links {
  flex-direction: column;
  gap: 13px;
  display: flex;
}

.lp-footer-links a {
  color: #f7f4eccc;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.lp-footer-links a:hover {
  color: #fff;
}

.lp-footer-bar {
  color: #f7f4ec99;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px 0;
  font-size: 13px;
  display: flex;
}

.lp-footer-made {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

@media (max-width: 1000px) {
  .lp-svc-grid, .lp-video-grid, .lp-social-grid, .lp-price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-reviews {
    columns: 2;
  }

  .lp-hero-split .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 80px;
  }

  .lp-hero-media {
    max-width: 460px;
  }

  .lp-about, .lp-faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-faq-aside {
    position: static;
  }

  .lp-faq-seal {
    display: none;
  }
}

@media (max-width: 720px) {
  .lp-nav-links, .lp-nav-cta span {
    display: none;
  }

  .lp-nav-cta {
    padding: 10px;
  }

  .lp-burger {
    display: flex;
  }

  .lp-nav-inner {
    gap: 12px;
  }

  .lp-mobile-menu {
    background: var(--glass);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 4px;
    padding: 8px 24px 18px;
    display: flex;
  }

  .lp-mobile-menu a {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    padding: 12px 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }

  .lp-mobile-enter {
    color: var(--terra) !important;
    border-bottom: none !important;
    font-weight: 700 !important;
  }

  .lp-svc-grid, .lp-video-grid, .lp-social-grid, .lp-price-grid {
    grid-template-columns: 1fr;
  }

  .lp-reviews {
    columns: 1;
  }

  .lp-enter-grid {
    grid-template-columns: 1fr;
  }

  .lp-price-card.featured {
    transform: none;
  }

  .lp-price-card.featured:hover {
    transform: translateY(-5px);
  }

  .lp-hero {
    padding-top: 110px;
  }

  .lp-hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .lp-footer-inner {
    flex-direction: column;
  }

  .lp-hero-quote {
    right: 12px;
    left: auto !important;
  }

  .lp-tabs {
    width: 100%;
  }

  .lp-tab {
    flex: 1;
    padding: 11px 0;
    font-size: 13px;
  }

  .lp-news-input {
    min-width: 0;
  }

  #enter {
    overflow: clip;
  }
}

.lp-contact-info {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 44px auto 0;
  display: grid;
}

.lp-contact-cell {
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 18px;
  display: flex;
}

.lp-contact-ic {
  background: var(--sage-wash);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  display: flex;
}

.lp-contact-label {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 700;
}

.lp-contact-val {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
}

.lp-contact-link {
  text-decoration: none;
  transition: color .2s;
}

.lp-contact-link:hover {
  color: var(--terra);
}

@media (max-width: 720px) {
  .lp-contact-info {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (min-width: 1001px) {
  .lp-social-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 300px));
    justify-content: center;
  }
}

.lp-rating-link {
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.lp-rating-link:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

.lp-preview-bar {
  z-index: 90;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  letter-spacing: .01em;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  font-size: 13.5px;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.lp-preview-bar a {
  color: var(--terra-soft);
  font-weight: 700;
  text-decoration: underline;
}

.lp-blog-main {
  padding: 130px 0 0;
}

.lp-blog-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.lp-blog-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
}

.lp-blog-h1 {
  color: var(--sage-deep);
  letter-spacing: -.01em;
  text-wrap: balance;
  margin: 13px 0 12px;
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 500;
  line-height: 1.06;
}

.lp-blog-sub {
  color: var(--ink-soft);
  text-wrap: pretty;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
}

.lp-blog-filters {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 46px;
  display: flex;
}

.lp-blog-chip {
  font-family: var(--sans);
  border: 1.4px solid var(--line-2);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 700;
  transition: transform .18s, box-shadow .2s, background .2s, color .2s;
}

.lp-blog-chip:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-1px);
}

.lp-blog-chip[data-svc] {
  border-color: color-mix(in srgb, var(--cc) 55%, transparent);
  color: var(--cc);
}

.lp-blog-chip.active {
  color: #fff;
  box-shadow: var(--sh-sm);
  border-color: #0000;
}

.lp-blog-chip.active[data-all] {
  background: var(--sage-deep);
}

.lp-blog-chip.active[data-svc] {
  background: var(--cc);
}

.lp-blog-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  display: grid;
}

.lp-blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  flex-direction: column;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.2, .7, .3, 1), box-shadow .3s, border-color .3s;
  display: flex;
  overflow: hidden;
}

.lp-blog-card:hover {
  box-shadow: var(--sh-lg);
  border-color: #0000;
  transform: translateY(-6px);
}

.lp-blog-cover {
  aspect-ratio: 16 / 10;
  background: var(--sand);
  overflow: hidden;
}

.lp-blog-cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
  display: block;
}

.lp-blog-cover-placeholder {
  background: url("/assets/lp/about-texture.webp") center / cover;
  width: 100%;
  height: 100%;
}

.lp-blog-card:hover .lp-blog-cover img {
  transform: scale(1.04);
}

.lp-blog-body {
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 26px;
  display: flex;
}

.lp-blog-tag {
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--tw);
  color: var(--tc);
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 700;
}

.lp-blog-title {
  font-family: var(--serif);
  color: var(--sage-deep);
  text-wrap: balance;
  margin: 0 0 9px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.14;
}

.lp-blog-date {
  color: var(--ink-faint);
  margin: 0 0 12px;
  font-size: 12.5px;
}

.lp-blog-excerpt {
  color: var(--ink-soft);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

.lp-blog-empty {
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  max-width: 440px;
  box-shadow: var(--sh-sm);
  margin: 8px auto 0;
  padding: 52px 40px;
}

.lp-blog-empty-ic {
  background: var(--sage-wash);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
}

.lp-blog-empty h2 {
  font-family: var(--serif);
  color: var(--sage-deep);
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 600;
}

.lp-blog-empty p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .lp-blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .lp-blog-main {
    padding-top: 104px;
  }

  .lp-blog-grid {
    grid-template-columns: 1fr;
  }
}

.lp-blog-article-hero {
  background: var(--sage-deep);
  height: clamp(320px, 50vh, 500px);
  position: relative;
  overflow: hidden;
}

.lp-blog-article-hero img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.lp-blog-article-hero:after {
  content: "";
  background: linear-gradient(#1c20104d 0%, #1c20100f 42%, #1c201057 100%);
  position: absolute;
  inset: 0;
}

.lp-blog-article-col {
  max-width: 744px;
  margin: 0 auto;
  padding: 0 32px;
}

.lp-blog-article-head {
  padding-top: 40px;
}

.lp-blog-article-head.no-cover {
  padding-top: 130px;
}

.lp-blog-article-meta {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  display: flex;
}

.lp-blog-article-date {
  color: var(--ink-faint);
  font-size: 13px;
}

.lp-blog-article-h1 {
  font-family: var(--serif);
  color: var(--sage-deep);
  letter-spacing: -.01em;
  text-wrap: balance;
  margin: 18px 0 0;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.06;
}

.lp-blog-article-rule {
  background: var(--line);
  border: none;
  height: 1px;
  margin: 30px 0 4px;
}

.lp-blog-article-body {
  padding-bottom: 8px;
}

.lp-blog-article-body p {
  color: var(--ink);
  text-wrap: pretty;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.78;
}

.lp-blog-article-body p.lp-blog-lede {
  font-family: var(--serif);
  color: var(--ink-soft);
  text-wrap: pretty;
  margin: 22px 0 0;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.5;
}

.lp-blog-article-h2 {
  font-family: var(--serif);
  color: var(--sage-deep);
  text-wrap: balance;
  margin: 40px 0 4px;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.12;
}

.lp-blog-article-figure {
  margin: 34px 0 0;
}

.lp-blog-article-figure img {
  border-radius: var(--r-lg);
  width: 100%;
  box-shadow: var(--sh-md);
  display: block;
}

.lp-blog-cta-wrap {
  max-width: 744px;
  margin: 60px auto 0;
  padding: 0 32px;
}

.lp-blog-cta {
  background: var(--sage-deep);
  color: var(--cream);
  border-radius: var(--r-xl);
  text-align: center;
  box-shadow: var(--sh-lg);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}

.lp-blog-cta:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #c19a4352 0%, #0000 70%);
  border-radius: 50%;
  width: 340px;
  height: 340px;
  position: absolute;
  top: -150px;
  right: -90px;
}

.lp-blog-cta-h2 {
  font-family: var(--serif);
  color: var(--cream);
  text-wrap: balance;
  margin: 14px 0 26px;
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 500;
  position: relative;
}

.lp-blog-cta-btns {
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  display: flex;
  position: relative;
}

@media (max-width: 720px) {
  .lp-blog-article-hero {
    height: 260px;
  }

  .lp-blog-article-body p {
    font-size: 17px;
  }

  .lp-blog-cta {
    padding: 40px 24px;
  }
}

.lp-book-main {
  padding: 130px 0 0;
  position: relative;
  overflow: hidden;
}

.lp-book-main:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(60% 40% at 50% 2%, #c9a85f1a 0%, #0000 60%), radial-gradient(50% 34% at 88% 30%, #8f966114 0%, #0000 62%);
  position: absolute;
  inset: 0;
}

.lp-book-wrap {
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.lp-book-header {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
  margin: 0 auto 30px;
  display: flex;
}

.lp-book-sprig {
  opacity: .9;
  margin-bottom: 14px;
}

.lp-book-eyebrow-row {
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  display: inline-flex;
}

.lp-book-dot {
  background: var(--terra);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px #c9a85f38;
}

.lp-book-h1 {
  color: var(--sage-deep);
  letter-spacing: -.01em;
  text-wrap: balance;
  margin: 0 0 13px;
  font-size: clamp(36px, 4.6vw, 54px);
  font-weight: 500;
  line-height: 1.04;
}

.lp-book-sub {
  color: var(--ink-soft);
  text-wrap: pretty;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.62;
}

.lp-book-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  max-width: 660px;
  box-shadow: var(--sh-lg);
  margin: 0 auto;
  padding: 42px 44px;
}

.lp-book-field {
  margin-bottom: 26px;
}

.lp-book-field:last-of-type {
  margin-bottom: 0;
}

.lp-book-field-label {
  color: var(--ink);
  align-items: baseline;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
}

.lp-book-field-num {
  background: var(--sage-wash);
  width: 22px;
  height: 22px;
  color: var(--sage-deep);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-self: center;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
}

.lp-book-field-opt {
  color: var(--ink-faint);
  letter-spacing: .02em;
  font-size: 11.5px;
  font-weight: 600;
}

.lp-book-field-note {
  color: var(--ink-faint);
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  font-size: 12.5px;
  line-height: 1.4;
  display: flex;
}

.lp-book-field-note svg {
  flex-shrink: 0;
}

.lp-book-field-note.warn {
  color: var(--terra-deep);
  font-weight: 600;
}

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

.lp-book-svc-opt {
  cursor: pointer;
  display: block;
  position: relative;
}

.lp-book-svc-opt input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.lp-book-svc-opt-inner {
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-md);
  background: var(--paper);
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 15px 15px 16px;
  transition: border-color .2s, background .2s, box-shadow .2s, transform .2s;
  display: flex;
  position: relative;
}

.lp-book-svc-opt:hover .lp-book-svc-opt-inner {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}

.lp-book-svc-head {
  align-items: center;
  gap: 8px;
  padding-right: 20px;
  display: flex;
}

.lp-book-svc-dot {
  background: var(--c);
  width: 11px;
  height: 11px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--c) 18%, transparent);
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-book-svc-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.lp-book-svc-desc {
  color: var(--ink-faint);
  font-size: 12.5px;
  line-height: 1.42;
}

.lp-book-svc-check {
  background: var(--c);
  color: #fff;
  opacity: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: opacity .2s, transform .2s;
  display: flex;
  position: absolute;
  top: 11px;
  right: 11px;
  transform: scale(.6);
}

.lp-book-svc-opt.on .lp-book-svc-opt-inner {
  border-color: var(--c);
  background: var(--cw);
  box-shadow: 0 8px 22px -12px color-mix(in srgb, var(--c) 60%, transparent);
}

.lp-book-svc-opt.on .lp-book-svc-check {
  opacity: 1;
  transform: scale(1);
}

.lp-book-svc-opt input:focus-visible + .lp-book-svc-opt-inner {
  outline: 2px solid var(--sage-soft);
  outline-offset: 2px;
}

.lp-book-svc-notsure {
  margin-top: 12px;
}

.lp-book-svc-notsure .lp-book-svc-opt-inner {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.lp-book-svc-ic {
  background: var(--sage-wash);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  display: flex;
}

.lp-book-svc-copy {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.lp-book-input {
  border: 1.5px solid var(--line-2);
  background: var(--paper);
  width: 100%;
  height: 52px;
  color: var(--ink);
  border-radius: 999px;
  outline: none;
  padding: 0 20px;
  font-size: 15px;
  transition: border-color .2s;
}

.lp-book-input::placeholder {
  color: var(--ink-faint);
}

.lp-book-input:focus {
  border-color: var(--sage-soft);
}

.lp-book-input.warn {
  border-color: var(--terra-deep);
}

input.lp-book-input[type="date"] {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  accent-color: var(--terra);
  cursor: pointer;
}

input.lp-book-input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: .5;
  cursor: pointer;
}

.lp-book-seg {
  background: var(--sand);
  border-radius: 999px;
  width: 100%;
  max-width: 360px;
  padding: 4px;
  display: flex;
}

.lp-book-seg-opt {
  flex: 1;
  position: relative;
}

.lp-book-seg-opt input {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  inset: 0;
}

.lp-book-seg-opt span {
  color: var(--ink-faint);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 11px 8px;
  font-size: 14.5px;
  font-weight: 700;
  transition: color .2s, background .2s, box-shadow .2s;
  display: flex;
}

.lp-book-seg-opt.on span {
  background: var(--paper);
  color: var(--sage-deep);
  box-shadow: var(--sh-sm);
}

.lp-book-seg-opt input:focus-visible + span {
  outline: 2px solid var(--sage-soft);
  outline-offset: 2px;
}

.lp-book-row2 {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
}

.lp-book-textarea {
  border-radius: var(--r-lg);
  border: 1.5px solid var(--line-2);
  background: var(--paper);
  width: 100%;
  min-height: 118px;
  color: var(--ink);
  resize: vertical;
  outline: none;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.6;
  transition: border-color .2s;
}

.lp-book-textarea::placeholder {
  color: var(--ink-faint);
}

.lp-book-textarea:focus {
  border-color: var(--sage-soft);
}

.lp-book-actions {
  margin-top: 32px;
}

.lp-book-submit {
  background: var(--terra);
  color: #fff;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width: 100%;
  height: 56px;
  font-size: 16px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, filter .2s;
  display: flex;
  box-shadow: 0 12px 26px -8px #a07f3080;
}

.lp-book-submit:hover {
  filter: brightness(1.03);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px #a07f309e;
}

.lp-book-submit:active {
  transform: translateY(0);
}

.lp-book-submit:disabled {
  opacity: .65;
  cursor: default;
  transform: none;
}

.lp-book-reassure {
  text-align: center;
  color: var(--ink-faint);
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  display: flex;
}

.lp-book-rule {
  background: var(--line);
  border: none;
  height: 1px;
  margin: 30px 0 26px;
}

.lp-book-success {
  background: var(--sage-wash);
  border: 1px solid var(--sage-soft);
  border-radius: var(--r-xl);
  text-align: center;
  max-width: 560px;
  box-shadow: var(--sh-md);
  margin: 0 auto;
  padding: 52px 46px;
}

.lp-book-success-ic {
  background: var(--sage-tint);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: flex;
}

.lp-book-success h2 {
  font-family: var(--serif);
  color: var(--sage-deep);
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.14;
}

.lp-book-success p {
  color: var(--ink-soft);
  max-width: 400px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.66;
}

.lp-book-success-back {
  color: var(--terra-deep);
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: gap .2s;
  display: inline-flex;
}

.lp-book-success-back:hover {
  gap: 11px;
}

@media (max-width: 720px) {
  .lp-book-main {
    padding-top: 104px;
  }

  .lp-book-card {
    border-radius: var(--r-lg);
    padding: 28px 20px;
  }

  .lp-book-svc-grid {
    grid-template-columns: 1fr;
  }

  .lp-book-seg {
    max-width: none;
  }

  .lp-book-row2 {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=components_landing_landing_1jknrq8.css.map*/