@charset "UTF-8";

/* ==========================================================================
   Foundation
   ========================================================================== */

:root {
  --body-bg: #fcfaf6;
  --body-bg-rgb: 252 250 246;
  --border-rgb: 228 221 213;
  --border-accent: 1px solid rgb(162 143 125 / 0.75);
  --border-base: 1px solid rgb(var(--border-rgb) / 0.7);
  --border-subtle: 1px solid rgb(var(--border-rgb) / 0.55);
  --font-base: 1.0625rem;
  --font-body-lg: clamp(1.0625rem, 1.02rem + 0.32vw, 1.2rem);
  --font-brand: clamp(2.9rem, 10vw, 7.25rem);
  --font-display: clamp(2.35rem, 4.2vw, 4rem);
  --font-heading-lg: clamp(2.05rem, 1.55rem + 1.5vw, 3.35rem);
  --font-heading-md: clamp(1.85rem, 1.42rem + 1vw, 2.95rem);
  --font-heading-sm: clamp(1.1875rem, 1.05rem + 0.45vw, 1.65rem);
  --height-button: 3.85rem;
  --height-full: 100svh;
  --height-header-desktop: 150px;
  --height-header-desktop-compact: 75px;
  --height-header-mobile: 84px;
  --height-header-mobile-compact: 56px;
  --height-input: 42px;
  --height-logo: 48px;
  --height-logo-compact: 36px;
  --height-logo-desktop: 40px;
  --height-logo-desktop-hero: 72px;
  --height-message: 84svh;
  --line-base: 1.8;
  --line-heading: 1.55;
  --line-hero: 0.95;
  --line-relaxed: 2;
  --line-snug: 1.7;
  --line-loose: 2.35;
  --node-ring-color: #f7f2eb;
  --node-ring-width: 3px;
  --size-control-sm: 1.9rem;
  --size-control-md: 2.75rem;
  --size-control-lg: 4rem;
  --size-icon-sm: 0.45rem;
  --size-icon-md: 0.9rem;
  --space-0: 0;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-base: 1rem;
  --space-xl: 1.5rem;
  --space-2xl: 1.75rem;
  --space-3xl: 2rem;
  --space-4xl: 2.4rem;
  --space-5xl: 2.75rem;
  --space-6xl: 3.1rem;
  --space-7xl: 3.75rem;
  --space-8xl: 4.5rem;
  --space-9xl: 5.25rem;
  --space-10xl: 6rem;
  --space-11xl: 7rem;
  --gray-rgb: 178 178 178;
  --greige: #d7cec3;
  --grid-flow: 1.25rem 12rem minmax(0, 1fr);
  --grid-flow-mobile: 1rem 1fr;
  --grid-flow-tablet: 1.1rem 10rem minmax(0, 1fr);
  --green: #dbe7db;
  --green-deep: #91a691;
  --green-rgb: 219 231 219;
  --flow-line-color: rgb(145 166 145 / 0.7);
  --heading: #3d352e;
  --header-bg: rgb(var(--body-bg-rgb) / 0.58);
  --header-bg-menu: rgb(var(--body-bg-rgb) / 0.32);
  --hero-shift: 0px;
  --letter-track-tight: 0.02em;
  --letter-track-base: 0.04em;
  --letter-track-md: 0.06em;
  --letter-track-wide: 0.12em;
  --letter-track-ultra: 0.22em;
  --message-image: none;
  --message-overlay: rgb(var(--gray-rgb) / 0.34);
  --message-shift: 0px;
  --radius-card: 1.75rem;
  --radius-mobile: 1.5rem;
  --radius-panel: 2rem;
  --radius-pill: 999px;
  --section-contrast-end: rgb(255 253 249 / 0.98);
  --section-contrast-start: rgb(var(--green-rgb) / 0.2);
  --section-padding-y: var(--space-11xl);
  --section-tint-end: rgb(255 253 249 / 0.95);
  --section-tint-start: rgb(245 238 229 / 0.82);
  --shadow: 0 24px 60px rgb(102 90 73 / 0.08);
  --shadow-glow: 0 0 30px rgb(255 255 255 / 0.95);
  --shadow-soft: 0 18px 42px rgb(102 90 73 / 0.06);
  --shadow-strong: 0 40px 70px rgb(117 113 106 / 0.18);
  --surface-glass: rgb(255 253 249 / 0.95);
  --surface-soft: rgb(255 253 249 / 0.72);
  --surface: #ffffff;
  --text: #5f564d;
  --text-muted: #a09890;
  --text-soft: #8e857b;
  --text-strong: #4b4641;
  --text-footer-accent: #a28f7d;
  --text-footer-accent-hover: #8f7c6b;
  --text-on-dark: #ffffff;
  --text-on-dark-faint: rgb(255 255 255 / 0.82);
  --text-on-dark-soft: rgb(255 255 255 / 0.92);
  --ui-accent-hover: #cfdccf;
  --ui-footer-bg: #fbf9f5;
  --width-flow-line: 2px;
  --width-xs: 19rem;
  --width-sm: 22rem;
  --width-md: 27rem;
  --width-lg: 36rem;
  --width-xl: 46rem;
  --width-2xl: 54rem;
  --width-3xl: 64rem;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--body-bg);
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
  font-size: var(--font-base);
  letter-spacing: var(--letter-track-base);
  line-height: var(--line-base);
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
  line-height: var(--line-heading);
}

a {
  color: inherit;
}

br.sp-only {
  display: none;
}

.site-main {
  margin: 0;
  min-width: 0;
  position: relative;
  width: 100%;
}

figure {
  margin: 0;
}

.site-main .container,
.site-main .row,
.site-main [class^="col-"],
.site-main [class*=" col-"] {
  min-width: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

.site-header .nav-link,
.lp-button,
.lp-eyebrow,
.lp-items-group-title,
.lp-item-title,
.lp-item-text,
.lp-message-eyebrow,
.lp-flow-pill-title,
.lp-flow-body,
.lp-contact-body,
.lp-backtotop-label,
.lp-social-link,
.lp-footer-nav a,
.lp-footer-copy {
  font-size: var(--font-base);
}

.lp-hero-tagline,
.lp-message-text {
  font-size: var(--font-body-lg);
}

.lp-hero-kicker,
.lp-section-title {
  font-size: var(--font-heading-md);
}

.lp-message-title,
.lp-contact-title {
  font-size: var(--font-heading-lg);
}

.lp-display,
.lp-concept-title {
  font-size: var(--font-display);
}

.lp-hero-brand {
  font-size: var(--font-brand);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  -webkit-backdrop-filter: blur(8px);
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: var(--border-subtle);
  opacity: 1;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    opacity 0.4s ease;
  will-change: opacity;
  z-index: 1030;
}

.site-header.is-over-hero:not(.is-menu-open) {
  -webkit-backdrop-filter: none;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.site-header-overlay {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.site-header.is-menu-open {
  -webkit-backdrop-filter: blur(14px);
  background: var(--header-bg-menu);
  backdrop-filter: blur(14px);
  border-bottom-color: rgb(var(--border-rgb) / 0.4);
}

.lp-navbar {
  min-height: var(--height-header-mobile-compact);
  transition: min-height 0.25s ease;
}

.lp-header-shell {
  align-items: center;
  display: flex;
  min-height: inherit;
  transition: padding 0.25s ease;
}

.site-header.is-over-hero .lp-navbar {
  min-height: var(--height-header-mobile);
}

.site-header.is-over-hero .lp-header-shell {
  padding-bottom: var(--space-base);
  padding-top: var(--space-base);
}

.lp-header-logo {
  display: inline-flex;
  text-decoration: none;
}

.lp-header-logo-image {
  display: block;
  height: auto;
  max-height: var(--height-logo);
  object-fit: contain;
  width: auto;
}

.site-header .nav-link {
  color: var(--text);
  padding-left: var(--space-base);
  padding-right: var(--space-base);
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.active {
  color: var(--heading);
}

.site-header .navbar-toggler {
  border-color: transparent;
}

.site-header .navbar-toggler:focus {
  box-shadow: none;
}

.site-header:not(.is-over-hero) .lp-header-logo-image {
  max-height: var(--height-logo-compact);
}

@media (min-width: 992px) {
  .lp-navbar {
    min-height: var(--height-header-desktop-compact);
  }

  .site-header .navbar-nav {
    flex-wrap: wrap;
  }

  .site-header.is-over-hero .lp-navbar {
    min-height: var(--height-header-desktop);
  }

  .lp-header-shell,
  .site-header.is-over-hero .lp-header-shell {
    padding-bottom: var(--space-0);
    padding-top: var(--space-0);
  }

  .lp-header-logo-image {
    max-height: var(--height-logo-desktop);
  }

  .site-header.is-over-hero .lp-header-logo-image {
    max-height: var(--height-logo-desktop-hero);
  }
}

/* ==========================================================================
   Shared Components
   ========================================================================== */

.lp-button {
  align-items: center;
  border-radius: var(--radius-pill);
  display: inline-flex;
  justify-content: center;
  letter-spacing: var(--letter-track-md);
  min-height: var(--height-button);
  padding: var(--space-base) var(--space-3xl);
  text-align: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.lp-button:hover,
.lp-button:focus {
  box-shadow: var(--shadow-soft);
}

.lp-button-primary,
.btn-accent {
  background-color: var(--green);
  border: 1px solid transparent;
  color: var(--heading);
}

.lp-button-primary:hover,
.lp-button-primary:focus,
.btn-accent:hover,
.btn-accent:focus {
  background-color: var(--ui-accent-hover);
  color: var(--heading);
}

.lp-section {
  background-color: var(--body-bg);
  padding: var(--section-padding-y) 0;
  position: relative;
}

.lp-section-tint {
  background: linear-gradient(
    180deg,
    var(--section-tint-start),
    var(--section-tint-end)
  );
}

.lp-section-contrast {
  background: linear-gradient(
    180deg,
    var(--section-contrast-start),
    var(--section-contrast-end)
  );
}

/* ==========================================================================
   Hero
   ========================================================================== */

.lp-hero-visual-section {
  background-color: var(--body-bg);
  min-height: var(--height-full);
  overflow: hidden;
  padding: var(--space-0);
  position: relative;
  z-index: 1;
}

.lp-hero-visual-section::before {
  background:
    radial-gradient(
      circle at 22% 20%,
      rgb(255 255 255 / 92%),
      rgba(255, 255, 255, 0) 28%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(219, 231, 219, 0.45),
      rgba(219, 231, 219, 0) 18%
    ),
    radial-gradient(
      circle at 70% 12%,
      rgba(197, 210, 228, 0.22),
      rgba(197, 210, 228, 0) 15%
    ),
    linear-gradient(180deg, rgb(243 255 236 / 90%), rgb(255 244 222 / 90%));
  content: "";
  inset: 0;
  position: absolute;
}

.lp-hero-stage {
  align-items: center;
  display: flex;
  min-height: var(--height-full);
  overflow: hidden;
  position: relative;
}

.lp-hero-stage .row {
  flex: 1 1 auto;
  margin-left: var(--space-0);
  margin-right: var(--space-0);
  width: auto;
}

.lp-hero-product,
.lp-hero-copy {
  position: relative;
  z-index: 1;
}

.lp-hero-product {
  margin: var(--space-0) auto;
  max-width: var(--width-md);
}

.lp-image-product {
  aspect-ratio: 4 / 5.5;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.97),
      rgba(241, 239, 234, 0.95)
    ),
    linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(219, 231, 219, 0.12));
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow-strong);
}

.lp-image-product .lp-media-image {
  transform: translate3d(0, var(--hero-shift), 0) scale(1.04);
  will-change: transform;
}

.lp-image-product::before {
  background: linear-gradient(
    180deg,
    rgba(219, 231, 219, 0.2),
    rgba(255, 255, 255, 0)
  );
  border-radius: 999px;
  bottom: -8%;
  height: 36%;
  width: 82%;
}

.lp-hero-copy {
  padding-left: var(--space-2xl);
}

.lp-hero-kicker {
  color: var(--text);
  letter-spacing: var(--letter-track-wide);
  text-transform: uppercase;
}

.lp-hero-brand {
  color: var(--heading);
  font-weight: 300;
  letter-spacing: var(--letter-track-md);
  line-height: var(--line-hero);
}

.lp-hero-tagline {
  color: var(--text);
  letter-spacing: var(--letter-track-wide);
}

.lp-concept-story {
  isolation: isolate;
  position: relative;
}

.lp-concept-story-stage {
  height: 100svh;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.lp-concept-story.is-active .lp-concept-story-stage {
  opacity: 1;
}

.lp-concept-story-layer,
.lp-concept-story-overlay {
  inset: 0;
  position: absolute;
}

.lp-concept-story-layer {
  backface-visibility: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: translateZ(0) scale(1.04);
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.lp-concept-story-layer-concept {
  opacity: 1;
}

.lp-concept-story.is-detail-active .lp-concept-story-layer-concept {
  opacity: 0;
}

.lp-concept-story.is-detail-active .lp-concept-story-layer-detail {
  opacity: 1;
}

.lp-concept-story-overlay {
  background:
    linear-gradient(180deg, rgb(60 55 42 / 52%), rgb(100 100 100 / 70%)),
    radial-gradient(circle at 25% 25%, rgb(74 112 61 / 18%), transparent 28%);
}

.lp-concept-story-panel {
  align-items: center;
  background-color: transparent;
  display: flex;
  min-height: 100svh;
  padding: 0;
  position: relative;
  z-index: 1;
}

.lp-concept-story-panel .container {
  position: relative;
  z-index: 1;
}

.lp-concept-story-panel-concept .lp-section-heading {
  max-width: var(--width-3xl);
}

.lp-concept-story-panel-detail .container {
  display: flex;
  justify-content: flex-start;
}

.lp-concept-story-copy {
  color: var(--text-on-dark);
  line-height: var(--line-loose);
  max-width: var(--width-xl);
  text-align: left;
}

.lp-concept-story-copy p {
  font-size: var(--font-heading-sm);
  letter-spacing: var(--letter-track-base);
}

.lp-eyebrow {
  align-items: center;
  color: var(--green-deep);
  display: inline-flex;
  font-weight: 600;
  gap: var(--space-sm);
  letter-spacing: var(--letter-track-wide);
  text-transform: uppercase;
}

.lp-eyebrow::before {
  background-color: var(--green-deep);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: var(--size-icon-sm);
  width: var(--size-icon-sm);
}

.lp-concept-story-panel .lp-eyebrow,
.lp-concept-story-panel .lp-concept-title,
.lp-concept-story-panel .lp-display {
  color: var(--text-on-dark);
}

.lp-concept-story-panel .lp-eyebrow::before {
  background-color: var(--text-on-dark-faint);
}

.lp-display {
  font-weight: 500;
  letter-spacing: var(--letter-track-tight);
}

.lp-section-heading {
  margin-bottom: var(--space-8xl);
  max-width: var(--width-2xl);
}

.lp-section-title {
  margin-bottom: var(--space-xl);
}

.lp-tier-heading {
  margin-bottom: var(--space-6xl);
}

.lp-tier-board {
  background: linear-gradient(
    180deg,
    rgb(var(--green-rgb) / 0.22) 0%,
    rgb(255 253 249 / 0.96) 11%,
    var(--surface) 100%
  );
  border: var(--border-accent);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}

.lp-tier-group + .lp-tier-group {
  margin-top: var(--space-8xl);
}

.lp-program-layout > [class*="col-"] {
  display: flex;
}

.lp-program-layout .lp-tier-group {
  width: 100%;
}

.lp-tier-group-heading {
  margin-bottom: var(--space-5xl);
}

.lp-items-group-title,
.lp-tier-group-title {
  color: var(--green-deep);
  font-weight: bold;
  letter-spacing: var(--letter-track-md);
  text-transform: uppercase;
  font-size: var(--font-heading-sm);
}

/* ==========================================================================
   Cards / Media / Lists
   ========================================================================== */

.lp-surface {
  background-color: var(--surface);
  box-shadow: var(--shadow);
}

.lp-surface-panel {
  border: var(--border-accent);
  border-radius: var(--radius-panel);
  padding: var(--space-5xl);
}

.lp-surface-card {
  border-radius: var(--radius-card);
  padding: var(--space-5xl);
}

.lp-content-card {
  border: var(--border-accent);
  display: flex;
  flex-direction: column;
}

#items .lp-content-card {
  padding: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.lp-tier-card {
  border: var(--border-accent);
  box-shadow: var(--shadow-soft);
  position: relative;
  text-align: center;
}

.lp-tier-card .lp-check-list {
  text-align: left;
}

.lp-tier-card-copy {
  margin-bottom: var(--space-3xl);
}

.lp-tier-card-ribbon {
  align-items: center;
  background-color: var(--green-deep);
  color: var(--text-on-dark);
  display: inline-flex;
  font-size: calc(var(--font-base) * 1.05);
  font-weight: 600;
  justify-content: center;
  letter-spacing: var(--space-0);
  line-height: 1;
  min-width: var(--size-control-sm);
  padding: var(--space-xs) var(--space-0);
  position: absolute;
  right: var(--space-xl);
  text-align: center;
  top: var(--space-0);
  z-index: 2;
}

.lp-tier-card-ribbon::after {
  border-bottom: var(--space-sm) solid transparent;
  border-left: calc(var(--size-control-sm) / 2) solid var(--green-deep);
  border-right: calc(var(--size-control-sm) / 2 + 0.5px) solid var(--green-deep);
  content: "";
  left: 0;
  position: absolute;
  top: 100%;
}

.lp-tier-card-divider {
  background: var(--green-deep);
  display: block;
  height: 2px;
  margin: 0 auto;
  max-width: 8rem;
  width: 40%;
}

.lp-tier-card-lead {
  color: var(--text-soft);
  margin-bottom: var(--space-xl);
}

.lp-tier-card-title {
  color: var(--heading);
  font-size: var(--font-heading-sm);
  line-height: var(--line-heading);
  margin-bottom: var(--space-base);
}

.lp-tier-card-featured {
  background: linear-gradient(
    180deg,
    rgb(var(--green-rgb) / 0.32) 0%,
    rgb(255 253 249 / 0.98) 100%
  );
  border: 3px solid var(--green-deep);
  box-shadow: var(--shadow);
}

.lp-list-panel {
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.lp-media {
  align-items: center;
  border-radius: var(--radius-panel);
  display: flex;
  justify-content: center;
  margin: var(--space-0);
  overflow: hidden;
  text-align: center;
}

.lp-media-image {
  display: block;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.lp-image-tall {
  aspect-ratio: 3 / 2;
}

.lp-image-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-mobile);
}

.lp-feature-media {
  max-width: 100%;
  width: 100%;
}

.lp-feature-media-col,
.lp-feature-copy {
  min-width: 0;
}

@media (min-width: 992px) {
  #audience .lp-feature-row {
    --bs-gutter-x: 0;
    align-items: center;
    column-gap: var(--space-6xl);
    display: grid;
    grid-template-columns: 50vw minmax(0, 1fr);
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    width: calc(50vw + 50%);
  }

  #audience .lp-feature-row > [class*="col-"] {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }

  #audience .lp-feature-media-col {
    width: 50vw;
  }

  #audience .lp-feature-media {
    aspect-ratio: auto;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    height: clamp(24rem, 34vw, 32rem);
  }

  #audience .lp-feature-copy {
    padding-left: 0;
  }
}

.lp-check-list {
  display: grid;
  gap: var(--space-base);
  list-style: none;
  padding-left: var(--space-0);
}

.lp-check-list li {
  align-items: flex-start;
  display: flex;
  gap: var(--space-base);
  min-width: 0;
  overflow-wrap: anywhere;
}

.lp-check-list li::before {
  align-items: center;
  background-color: var(--green);
  border-radius: 999px;
  color: var(--heading);
  content: "\f00c";
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Font Awesome 6 Free";
  font-size: var(--font-base);
  font-weight: 900;
  height: var(--size-control-sm);
  justify-content: center;
  margin-top: var(--space-2xs);
  width: var(--size-control-sm);
}

.lp-card-visual {
  margin-bottom: var(--space-2xl);
}

/* ==========================================================================
   Service
   ========================================================================== */

.lp-service-section {
  overflow: visible;
}

.lp-service-layout {
  align-items: start;
  column-gap: clamp(3.5rem, 8vw, 7.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(50%, 50%);
}

.lp-service-intro {
  align-self: start;
  max-width: var(--width-lg);
  position: sticky;
  top: calc(var(--height-header-desktop-compact) + var(--space-4xl));
}

.lp-service-title {
  color: var(--heading);
  font-size: var(--font-display);
  font-weight: 400;
  letter-spacing: var(--letter-track-tight);
  margin-bottom: var(--space-3xl);
}

.lp-service-text {
  line-height: var(--line-relaxed);
}

.lp-service-list {
  display: grid;
  gap: var(--space-2xl);
  margin-left: auto;
}

.lp-service-item {
  display: grid;
  gap: var(--space-xl);
}

.lp-service-media {
  aspect-ratio: 2 / 1;
}

.lp-service-copy {
  max-width: 100%;
  padding-right: var(--space-xl);
}

.lp-detail-section {
  overflow: hidden;
}

.lp-detail-shell {
  align-items: end;
  column-gap: clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.lp-detail-media-wrap {
  min-width: 0;
  order: 1;
  overflow: hidden;
}

.lp-detail-media-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 0;
}

.lp-detail-media {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  box-shadow: none;
}

.lp-detail-media-clone {
  display: none;
}

.lp-detail-media:nth-child(4) {
  border-bottom-right-radius: var(--radius-mobile);
  border-top-right-radius: var(--radius-mobile);
}

.lp-detail-copy-wrap {
  min-width: 0;
  order: 2;
  padding-left: var(--space-xl);
  padding-right: clamp(1rem, 4vw, 4rem);
}

.lp-detail-copy {
  max-width: var(--width-md);
}

.lp-detail-text p {
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-xl);
}

.lp-detail-text p:last-child {
  margin-bottom: 0;
}

@keyframes lp-detail-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.lp-items-board {
  display: grid;
  gap: var(--space-3xl);
}

.lp-items-group {
  background-color: unset;
  box-shadow: none;
}

.lp-items-group-head {
  padding: var(--space-base) var(--space-2xl);
}

.lp-items-group .row {
  margin-left: var(--space-0);
  margin-right: var(--space-0);
  padding: var(--space-2xl);
}

.lp-items-group-split-layout {
  display: grid;
  gap: var(--space-3xl);
  padding: var(--space-2xl);
}

.lp-items-group-split-media,
.lp-items-group-split-copy {
  min-width: 0;
}

.lp-items-group-split-copy {
  display: grid;
  gap: var(--space-3xl);
}

.lp-item-title {
  color: var(--text-strong);
  font-weight: 500;
  letter-spacing: var(--letter-track-base);
  line-height: var(--line-base);
}

.lp-item-text {
  line-height: var(--line-relaxed);
}

@media (min-width: 992px) {
  .lp-items-group-split-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }
}

/* ==========================================================================
   Message
   ========================================================================== */

.lp-message-section {
  align-items: center;
  display: flex;
  min-height: var(--height-message);
  overflow: hidden;
  padding: var(--space-9xl) 0;
  position: relative;
}

.lp-message-section::before,
.lp-message-section::after {
  content: "";
  inset: 0;
  position: absolute;
}

.lp-message-section::before {
  background-image: var(--message-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(0, var(--message-shift), 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.lp-message-section::after {
  background-color: var(--message-overlay);
}

.lp-message-section .container {
  position: relative;
  z-index: 1;
}

.lp-message-content {
  font-weight: bold;
  margin-inline: auto;
  max-width: var(--width-xl);
}

.lp-message-eyebrow {
  color: var(--text-on-dark-faint);
  font-weight: 600;
  letter-spacing: var(--letter-track-ultra);
  margin-bottom: var(--space-base);
  text-transform: uppercase;
}

.lp-message-title {
  color: var(--text-on-dark);
  line-height: var(--line-snug);
  margin-bottom: var(--space-xl);
}

.lp-message-text {
  color: var(--text-on-dark-soft);
  line-height: var(--line-loose);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.lp-faq-list {
  margin-inline: auto;
  max-width: var(--width-3xl);
}

.lp-faq-item {
  border-top: var(--border-accent);
}

.lp-faq-item:last-child {
  border-bottom: var(--border-accent);
}

.lp-faq-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--heading);
  display: flex;
  gap: var(--space-3xl);
  justify-content: space-between;
  padding: var(--space-4xl) var(--space-0);
  text-align: left;
  width: 100%;
}

.lp-faq-button:focus-visible {
  outline: 2px solid rgb(var(--green-rgb) / 0.9);
  outline-offset: 4px;
}

.lp-faq-heading {
  margin: 0;
}

.lp-faq-question {
  display: block;
  font-size: var(--font-heading-sm);
  letter-spacing: var(--letter-track-base);
  line-height: var(--line-heading);
}

.lp-faq-icon {
  align-items: center;
  background-color: rgb(var(--green-rgb) / 0.3);
  border-radius: 50%;
  color: var(--green-deep);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: var(--font-heading-sm);
  height: var(--size-control-md);
  justify-content: center;
  position: relative;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  width: var(--size-control-md);
}

.lp-faq-icon::before,
.lp-faq-icon::after {
  background-color: currentcolor;
  content: "";
  position: absolute;
}

.lp-faq-icon::before {
  height: 1px;
  width: 0.9rem;
}

.lp-faq-icon::after {
  height: 0.9rem;
  width: 1px;
}

.lp-faq-button:not(.collapsed) .lp-faq-icon {
  background-color: rgb(var(--green-rgb) / 0.55);
  transform: rotate(180deg);
}

.lp-faq-button:not(.collapsed) .lp-faq-icon::after {
  opacity: 0;
}

.lp-faq-answer {
  color: var(--text);
  line-height: var(--line-relaxed);
  padding: 0 0 var(--space-4xl);
}

/* ==========================================================================
   About
   ========================================================================== */

.lp-about-staff {
  margin-bottom: var(--space-7xl);
}

.lp-about-staff-grid {
  display: grid;
  gap: var(--space-4xl);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  max-width: var(--width-md);
}

.lp-about-staff-item {
  text-align: center;
}

.lp-about-staff-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--heading);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: 0;
  width: 100%;
}

.lp-about-staff-button:focus-visible {
  outline: 2px solid rgb(var(--green-rgb) / 0.9);
  outline-offset: 6px;
}

.lp-about-staff-media {
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  width: min(100%, 12rem);
}

.lp-about-staff-name {
  color: var(--heading);
  font-size: var(--font-heading-sm);
  line-height: var(--line-heading);
}

.lp-about-staff-bio {
  color: var(--text);
  line-height: var(--line-relaxed);
  padding-top: var(--space-xl);
  text-align: left;
}

.lp-about-staff-detail-name {
  color: var(--heading);
  font-size: var(--font-heading-sm);
  line-height: var(--line-heading);
  margin-bottom: var(--space-sm);
}

/* ==========================================================================
   Flow
   ========================================================================== */

.lp-flow-chart {
  margin-inline: auto;
  max-width: var(--width-3xl);
  position: relative;
}

.lp-flow-step {
  align-items: center;
  column-gap: var(--space-2xl);
  display: grid;
  grid-template-columns: var(--grid-flow);
  padding: var(--space-sm) 0;
  position: relative;
}

.lp-flow-rail {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
}

.lp-flow-rail::before {
  background-color: var(--flow-line-color);
  bottom: -0.65rem;
  content: "";
  left: 50%;
  position: absolute;
  top: -0.65rem;
  transform: translateX(-50%);
  width: var(--width-flow-line);
}

.lp-flow-step:first-child .lp-flow-rail::before {
  top: 50%;
}

.lp-flow-step:last-child .lp-flow-rail::before {
  bottom: 50%;
}

.lp-flow-node {
  background-color: var(--green-deep);
  border: var(--node-ring-width) solid var(--node-ring-color);
  border-radius: 50%;
  display: block;
  height: var(--size-icon-md);
  position: relative;
  width: var(--size-icon-md);
  z-index: 1;
}

.lp-flow-pill {
  align-items: center;
  background-color: rgb(var(--green-rgb) / 0.95);
  border-radius: 999px;
  color: var(--green-deep);
  display: inline-flex;
  gap: var(--space-xs);
  min-height: var(--size-control-md);
  padding: var(--space-xs) var(--space-base);
}

.lp-flow-pill-title {
  font-weight: 600;
  letter-spacing: var(--letter-track-base);
}

.lp-flow-body {
  color: var(--text);
  line-height: var(--line-base);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.lp-contact {
  padding-bottom: var(--space-7xl);
  padding-top: var(--space-7xl);
}

.lp-contact-panel {
  padding: var(--space-7xl);
}

.lp-contact-actions {
  margin-top: var(--space-6xl);
}

.lp-contact-copy {
  margin-inline: auto;
  max-width: var(--width-lg);
  padding-inline: 0.5rem;
}

.lp-contact-title {
  color: var(--heading);
  font-weight: 400;
  letter-spacing: var(--letter-track-wide);
  margin-bottom: var(--space-4xl);
}

.lp-contact-body {
  color: var(--text);
  line-height: var(--line-loose);
}

.lp-contact-body p {
  margin-bottom: var(--space-xl);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--ui-footer-bg);
}

.lp-footer-shell {
  margin-bottom: var(--space-8xl);
  position: relative;
}

.lp-backtotop {
  align-items: center;
  color: var(--text-footer-accent);
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-base);
  margin-bottom: var(--space-7xl);
  margin-top: calc(var(--space-7xl) * -1);
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.lp-backtotop:hover,
.lp-backtotop:focus {
  color: var(--text-footer-accent-hover);
}

.lp-backtotop-icon {
  background: var(--surface-glass);
  border: var(--border-accent);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  display: inline-flex;
  height: var(--size-control-lg);
  position: relative;
  width: var(--size-control-lg);
}

.lp-backtotop-icon::before,
.lp-backtotop-icon::after {
  background-color: currentColor;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
}

.lp-backtotop-icon::before {
  height: 1rem;
  margin-top: -0.5rem;
  width: 1px;
}

.lp-backtotop-icon::after {
  background: transparent;
  border-left: 1px solid currentColor;
  border-top: 1px solid currentColor;
  height: var(--size-icon-sm);
  margin-top: -0.5rem;
  transform: translateX(-50%) rotate(45deg);
  width: var(--size-icon-sm);
}

.lp-backtotop-label {
  letter-spacing: var(--letter-track-ultra);
}

.lp-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  margin-bottom: var(--space-8xl) !important;
}

.lp-social-link {
  align-items: center;
  background-color: var(--greige);
  border-radius: 50%;
  color: var(--text-on-dark);
  display: inline-flex;
  height: var(--size-control-md);
  justify-content: center;
  letter-spacing: var(--letter-track-md);
  text-decoration: none;
  width: var(--size-control-md);
}

.lp-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl) var(--space-4xl);
  justify-content: center;
  margin-bottom: var(--space-7xl) !important;
}

.lp-footer-nav a {
  color: var(--text-muted);
  letter-spacing: var(--letter-track-md);
  text-decoration: none;
}

.lp-footer-copy {
  color: var(--text-muted) !important;
  letter-spacing: var(--letter-track-wide);
}

/* ==========================================================================
   WordPress
   ========================================================================== */

.page-header {
  border-bottom: var(--border-base);
  padding-bottom: var(--space-base);
}

.card-title a:hover,
.card-title a:focus {
  color: var(--bs-primary);
}

.entry-meta {
  letter-spacing: var(--letter-track-base);
}

.site-main .small,
.site-main small,
.site-footer .small,
.site-footer small {
  font-size: var(--font-base);
}

.wp-block-search__button,
input[type="search"],
input[type="submit"] {
  min-height: var(--height-input);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}

.screen-reader-text:focus {
  clip: auto;
  clip-path: none;
  display: block;
  height: auto;
  left: 5px;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.pagination {
  gap: var(--space-xs);
  justify-content: center;
}

.pagination .page-numbers {
  border: var(--border-base);
  border-radius: 0.375rem;
  color: var(--heading);
  display: inline-block;
  min-width: var(--size-control-md);
  padding: var(--space-xs) var(--space-base);
  text-align: center;
  text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-numbers:focus {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: var(--text-on-dark);
}
