:root {
  --paper: #f2f0e8;
  --paper-2: #e9e6dc;
  --ink: #171917;
  --muted: #62665f;
  --line: rgba(23, 25, 23, 0.18);
  --focus: #b6c83f;
  --focus-dark: #87931f;
  --white: #fffef9;
  --measure: 67ch;
  --header-h: 82px;
  --pad: clamp(22px, 4vw, 72px);
  --section-space: clamp(110px, 14vw, 220px);
  --radius: 22px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
a,
input,
select,
textarea,
summary {
  outline: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus-dark);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.llc-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
}

.llc-skip:focus {
  transform: translateY(0);
}

.llc-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  min-height: var(--header-h);
  padding: 15px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.llc-header.is-scrolled,
.llc-header--legal {
  background: rgba(242, 240, 232, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.llc-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  min-height: 48px;
  text-decoration: none;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  letter-spacing: -0.035em;
}

.llc-wordmark span {
  font-weight: 500;
}

.llc-wordmark strong {
  font-weight: 800;
}

.llc-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.llc-header__contact,
.llc-index-button,
.llc-index__top button,
.llc-legal-home {
  min-height: 52px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.llc-header__contact:hover,
.llc-index-button:hover,
.llc-index__top button:hover,
.llc-legal-home:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.llc-index-button {
  gap: 14px;
}

.llc-index-icon {
  width: 20px;
  height: 18px;
  display: grid;
  align-content: center;
  gap: 5px;
}

.llc-index-icon i {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.llc-index {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px var(--pad) 34px;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.llc-index.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.llc-index__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.llc-index__top > span {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.llc-index__top button {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.llc-index__top button:hover {
  background: var(--white);
  color: var(--ink);
}

.llc-index__links {
  align-self: center;
  width: min(1050px, 100%);
  margin: 50px auto;
}

.llc-index__links a {
  min-height: 80px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 65px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  font-size: clamp(1.8rem, 4vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.08;
  transition: color 180ms ease, padding-left 180ms ease;
}

.llc-index__links a span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--focus);
}

.llc-index__links a:hover {
  color: var(--focus);
  padding-left: 16px;
}

.llc-index > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

main {
  display: block;
}

.llc-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + clamp(70px, 10vh, 130px)) var(--pad) clamp(70px, 9vh, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 140px);
  border-bottom: 1px solid var(--line);
}

.llc-hero__copy {
  max-width: 920px;
}

.llc-kicker {
  margin: 0 0 24px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.llc-hero h1,
.llc-section-intro h2,
.llc-nature h2,
.llc-wingwave h2,
.llc-profile h2,
.llc-fees h2,
.llc-contact h2,
.llc-legal__content h1,
.llc-legal__content h2,
.llc-not-found h1 {
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.llc-hero h1 {
  max-width: 980px;
  font-size: clamp(3.6rem, 7.5vw, 8.6rem);
  font-weight: 760;
}

.llc-hero__lead {
  max-width: 640px;
  margin: clamp(34px, 5vw, 62px) 0 0;
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.55;
  color: #343833;
}

.llc-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.llc-button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--focus);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.llc-button:hover {
  background: #c6d65a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23, 25, 23, 0.12);
}

.llc-button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.llc-inline-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  font-weight: 750;
}

.llc-focus-field {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1.08;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.llc-focus-field::before,
.llc-focus-field::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.llc-focus-field::after {
  inset: 29%;
  border-color: var(--focus-dark);
}

.llc-focus-field__axis {
  position: absolute;
  left: 50%;
  top: -8%;
  bottom: -8%;
  width: 1px;
  background: var(--ink);
}

.llc-focus-field b {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--focus);
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  letter-spacing: -0.03em;
}

.llc-focus-field > span {
  position: absolute;
  display: inline-block;
  padding: 7px 11px;
  background: var(--paper);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.llc-focus-field .is-one {
  left: 4%;
  top: 24%;
}

.llc-focus-field .is-two {
  right: -2%;
  top: 46%;
}

.llc-focus-field .is-three {
  left: 14%;
  bottom: 12%;
}

.llc-hero__meta {
  position: absolute;
  left: var(--pad);
  bottom: 28px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.llc-situations,
.llc-process,
.llc-methods {
  padding: var(--section-space) var(--pad);
}

.llc-section-intro {
  max-width: 920px;
  margin-bottom: clamp(58px, 8vw, 110px);
}

.llc-section-intro h2,
.llc-nature h2,
.llc-wingwave h2,
.llc-profile h2,
.llc-fees h2,
.llc-contact h2 {
  font-size: clamp(2.7rem, 5.4vw, 6.7rem);
  font-weight: 740;
}

.llc-section-intro > p:last-child {
  max-width: 620px;
  margin: 30px 0 0;
  font-size: 1.15rem;
  color: var(--muted);
}

.llc-situation-switcher {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 130px);
  align-items: start;
}

.llc-situation-tabs {
  border-top: 1px solid var(--ink);
}

.llc-situation-tabs button {
  width: 100%;
  min-height: 76px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  font-weight: 750;
  cursor: pointer;
  transition: color 160ms ease, padding-left 160ms ease;
}

.llc-situation-tabs button span {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.llc-situation-tabs button:hover,
.llc-situation-tabs button[aria-selected="true"] {
  color: var(--ink);
  padding-left: 10px;
}

.llc-situation-tabs button[aria-selected="true"] span {
  color: var(--focus-dark);
}

.llc-situation-panels {
  min-height: 470px;
  padding: clamp(32px, 5vw, 70px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.llc-situation-panels article {
  max-width: 780px;
}

.llc-panel-label {
  margin: 0 0 30px;
  color: var(--focus);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.llc-situation-panels h3 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.llc-situation-panels article > p:not(.llc-panel-label) {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.llc-situation-panels ul {
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.llc-situation-panels li {
  min-height: 54px;
  padding: 12px 0 12px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
}

.llc-situation-panels li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--focus);
}

.llc-pause {
  min-height: clamp(420px, 62vw, 820px);
  padding: 110px var(--pad);
  display: grid;
  place-items: center;
  background: var(--focus);
}

.llc-pause p {
  width: min(1200px, 100%);
  margin: 0;
  text-align: center;
  font-size: clamp(2.2rem, 5.3vw, 6.5rem);
  font-weight: 740;
  line-height: 1.03;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.llc-process {
  background: var(--white);
}

.llc-process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 90px);
}

.llc-process__steps article {
  min-height: 360px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.llc-process__steps span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--focus-dark);
}

.llc-process__steps h3 {
  margin: 70px 0 22px;
  font-size: clamp(2.1rem, 3.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.llc-process__steps p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.llc-nature {
  position: relative;
  min-height: 950px;
  padding: var(--section-space) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  overflow: hidden;
  background: #20261e;
  color: var(--white);
}

.llc-contours {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
}

.llc-contours i {
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  border: 1px solid rgba(182, 200, 63, 0.55);
  border-radius: 48% 52% 56% 44% / 54% 42% 58% 46%;
}

.llc-contours i:nth-child(1) { width: 38vw; height: 28vw; }
.llc-contours i:nth-child(2) { width: 53vw; height: 39vw; }
.llc-contours i:nth-child(3) { width: 69vw; height: 51vw; }
.llc-contours i:nth-child(4) { width: 86vw; height: 65vw; }
.llc-contours i:nth-child(5) { width: 108vw; height: 82vw; }

.llc-nature__copy,
.llc-nature__tools {
  position: relative;
  z-index: 2;
}

.llc-nature .llc-kicker {
  color: var(--focus);
}

.llc-nature__copy > p:not(.llc-kicker) {
  max-width: 650px;
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.llc-nature__copy .llc-qualification-note {
  margin-top: 24px;
  color: var(--white);
  font-weight: 750;
}

.llc-nature__tools {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.llc-nature__tools article {
  min-height: 150px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.llc-nature__tools span {
  display: block;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 720;
  letter-spacing: -0.04em;
}

.llc-nature__tools p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.llc-wingwave {
  padding: var(--section-space) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  gap: clamp(55px, 9vw, 150px);
  align-items: center;
}

.llc-wingwave__content > p:not(.llc-kicker):not(.llc-license) {
  max-width: 720px;
  margin: 42px 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--muted);
}

.llc-fact-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.llc-fact-grid div {
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.llc-fact-grid span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--focus-dark);
}

.llc-fact-grid p {
  margin: 14px 0 0;
}

.llc-license {
  margin: 42px 0 0;
  font-weight: 800;
}

.llc-video-card {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.llc-video-card img,
.llc-video-card video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.llc-video-card button {
  position: absolute;
  left: 26px;
  bottom: 64px;
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--focus);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.llc-video-card > p {
  margin: 0;
  min-height: 54px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.llc-methods {
  background: var(--paper-2);
}

.llc-accordions {
  width: min(1100px, 100%);
  margin-left: auto;
  border-top: 1px solid var(--ink);
}

.llc-accordions details {
  border-bottom: 1px solid var(--line);
}

.llc-accordions summary {
  min-height: 96px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.45rem, 2.7vw, 3rem);
  font-weight: 730;
  letter-spacing: -0.045em;
}

.llc-accordions summary::-webkit-details-marker {
  display: none;
}

.llc-accordions summary i {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.llc-accordions summary i::before,
.llc-accordions summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.llc-accordions summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.llc-accordions details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.llc-accordions details > p {
  max-width: 720px;
  margin: 0;
  padding: 0 64px 42px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.llc-profile {
  padding: var(--section-space) var(--pad);
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 9vw, 150px);
  align-items: start;
  background: var(--white);
}

.llc-profile__image {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.llc-profile__image img {
  width: 100%;
  max-height: 820px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  background: var(--paper-2);
}

.llc-profile__copy {
  padding-top: clamp(20px, 6vw, 80px);
}

.llc-role {
  margin: 34px 0 0;
  font-size: clamp(1.25rem, 1.9vw, 1.75rem);
  font-weight: 750;
  line-height: 1.45;
}

.llc-profile__copy > p:not(.llc-kicker):not(.llc-role) {
  max-width: 690px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.llc-credentials {
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.llc-credentials li {
  min-height: 64px;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.llc-credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 27px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--focus);
}

.llc-profile__boundary {
  margin-top: 58px;
  padding: 30px;
  border-left: 5px solid var(--focus);
  background: var(--paper);
}

.llc-profile__boundary p {
  margin: 0;
}

.llc-profile__boundary a {
  display: inline-block;
  margin-top: 16px;
  font-weight: 800;
}

.llc-fees {
  padding: var(--section-space) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}

.llc-fees__intro > p:last-child {
  max-width: 560px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.llc-fee-list {
  border-top: 1px solid var(--ink);
}

.llc-fee-list > div {
  min-height: 108px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.llc-fee-list span {
  font-size: 1.05rem;
}

.llc-fee-list strong {
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  letter-spacing: -0.04em;
}

.llc-fee-list > a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
}

.llc-contact {
  padding: var(--section-space) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(60px, 10vw, 160px);
  background: var(--ink);
  color: var(--white);
}

.llc-contact .llc-kicker {
  color: var(--focus);
}

.llc-contact__intro > p:not(.llc-kicker) {
  max-width: 540px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.llc-contact__intro > a {
  display: inline-block;
  margin-top: 28px;
  color: var(--focus);
  font-weight: 800;
}

.llc-form {
  position: relative;
  padding: clamp(28px, 4vw, 54px);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.llc-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.llc-field-grid + .llc-field-grid,
.llc-field-grid + .llc-field,
.llc-field + .llc-check {
  margin-top: 22px;
}

.llc-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.llc-field label span {
  color: var(--muted);
  font-weight: 500;
}

.llc-field input,
.llc-field select,
.llc-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(23, 25, 23, 0.36);
  border-radius: 11px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}

.llc-field textarea {
  min-height: 160px;
  resize: vertical;
}

.llc-field input:focus,
.llc-field select:focus,
.llc-field textarea:focus {
  border-color: var(--focus-dark);
  box-shadow: 0 0 0 3px rgba(135, 147, 31, 0.18);
}

.llc-check {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.9rem;
  color: #4b4f49;
}

.llc-check input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--focus-dark);
}

.llc-form__submit {
  margin-top: 28px;
}

.llc-form-status {
  min-height: 28px;
  margin: 18px 0 0;
  font-weight: 700;
}

.llc-form-status.is-success {
  color: #48610c;
}

.llc-form-status.is-error {
  color: #a02b20;
}

.llc-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.llc-boundary {
  padding: 72px var(--pad);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 7vw, 100px);
  background: var(--paper-2);
}

.llc-boundary > div {
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.llc-boundary strong {
  font-size: 1.05rem;
}

.llc-boundary p {
  max-width: 680px;
  margin: 15px 0 0;
  color: var(--muted);
}

.llc-boundary a {
  display: inline-block;
  margin-top: 16px;
  font-weight: 800;
}

.llc-footer {
  padding: 74px var(--pad) 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 50px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.llc-footer > div:not(.llc-footer__brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.llc-footer a {
  width: fit-content;
}

.llc-footer__brand p {
  margin: 6px 0 0;
  color: var(--muted);
}

.llc-footer > p {
  grid-column: 1 / -1;
  margin: 32px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.llc-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.llc-reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.llc-legal-page {
  background: var(--white);
}

.llc-header--legal {
  position: sticky;
}

.llc-legal {
  min-height: 70vh;
  padding: clamp(80px, 10vw, 150px) var(--pad);
  display: grid;
  grid-template-columns: 210px minmax(0, 900px);
  justify-content: center;
  gap: clamp(50px, 9vw, 130px);
}

.llc-legal aside {
  display: grid;
  align-content: start;
  gap: 10px;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.llc-legal aside a {
  min-height: 48px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.llc-legal aside a.is-active {
  color: var(--ink);
}

.llc-legal__content {
  min-width: 0;
}

.llc-legal__content h1 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.llc-legal__content h2 {
  margin-top: 60px;
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
}

.llc-legal__content h3 {
  margin-top: 38px;
  font-size: 1.25rem;
}

.llc-legal__content p,
.llc-legal__content li {
  max-width: var(--measure);
}

.llc-legal__content a {
  overflow-wrap: anywhere;
}

.llc-footer--legal {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.llc-footer--legal > p {
  grid-column: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.llc-not-found main {
  min-height: 100svh;
  padding: var(--pad);
  display: grid;
  place-items: center;
}

.llc-not-found__card {
  width: min(760px, 100%);
}

.llc-not-found h1 {
  font-size: clamp(3rem, 7vw, 7rem);
}

.llc-not-found__card > p:not(.llc-kicker) {
  margin: 28px 0;
  color: var(--muted);
}

@media (max-width: 1100px) {
  :root {
    --header-h: 76px;
  }

  .llc-hero {
    grid-template-columns: 1fr 390px;
    gap: 48px;
  }

  .llc-situation-switcher,
  .llc-wingwave,
  .llc-profile,
  .llc-fees,
  .llc-contact {
    gap: 58px;
  }

  .llc-nature {
    min-height: 820px;
  }
}

@media (max-width: 900px) {
  .llc-header__contact {
    display: none;
  }

  .llc-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 95px);
    padding-bottom: 110px;
  }

  .llc-focus-field {
    width: min(68vw, 520px);
    justify-self: center;
    margin-top: 30px;
  }

  .llc-hero__meta {
    position: static;
    grid-column: 1;
    margin-top: 0;
  }

  .llc-situation-switcher,
  .llc-wingwave,
  .llc-profile,
  .llc-fees,
  .llc-contact,
  .llc-nature {
    grid-template-columns: 1fr;
  }

  .llc-situation-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-bottom: 0;
  }

  .llc-situation-tabs button {
    min-height: 68px;
    padding: 14px 18px;
    border-right: 1px solid var(--line);
  }

  .llc-situation-tabs button:nth-child(even) {
    border-right: 0;
  }

  .llc-situation-tabs button:hover,
  .llc-situation-tabs button[aria-selected="true"] {
    padding-left: 28px;
  }

  .llc-situation-panels {
    min-height: 420px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .llc-process__steps {
    grid-template-columns: 1fr;
  }

  .llc-process__steps article {
    min-height: auto;
    padding-bottom: 60px;
  }

  .llc-process__steps h3 {
    margin-top: 40px;
  }

  .llc-nature {
    min-height: 900px;
  }

  .llc-contours i:nth-child(1) { width: 65vw; height: 48vw; }
  .llc-contours i:nth-child(2) { width: 90vw; height: 68vw; }
  .llc-contours i:nth-child(3) { width: 120vw; height: 90vw; }
  .llc-contours i:nth-child(4) { width: 155vw; height: 116vw; }
  .llc-contours i:nth-child(5) { width: 190vw; height: 145vw; }

  .llc-video-card {
    min-height: 440px;
  }

  .llc-profile__image {
    position: static;
    max-width: 640px;
  }

  .llc-profile__image img {
    max-height: 680px;
  }

  .llc-boundary,
  .llc-footer {
    grid-template-columns: 1fr;
  }

  .llc-footer > p {
    grid-column: 1;
  }

  .llc-legal {
    grid-template-columns: 1fr;
  }

  .llc-legal aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --pad: 20px;
    --section-space: 108px;
    --header-h: 70px;
    --radius: 16px;
  }

  html {
    font-size: 17px;
  }

  .llc-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .llc-wordmark {
    font-size: 1.02rem;
  }

  .llc-index-button {
    min-height: 50px;
    padding: 0 16px;
  }

  .llc-index-button > span:first-child {
    font-size: 0.9rem;
  }

  .llc-index {
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .llc-index__top button {
    min-height: 48px;
    padding: 0 15px;
  }

  .llc-index__links {
    margin: 30px auto;
  }

  .llc-index__links a {
    min-height: 65px;
    grid-template-columns: 44px 1fr;
    font-size: clamp(1.65rem, 8vw, 2.7rem);
  }

  .llc-hero {
    padding-top: calc(var(--header-h) + 70px);
    padding-bottom: 84px;
    gap: 54px;
  }

  .llc-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
    line-height: 0.99;
  }

  .llc-hero__lead {
    margin-top: 30px;
    font-size: 1.05rem;
  }

  .llc-actions {
    align-items: stretch;
    margin-top: 34px;
  }

  .llc-actions .llc-button,
  .llc-actions .llc-inline-link {
    width: 100%;
    justify-content: center;
  }

  .llc-focus-field {
    width: min(88vw, 430px);
  }

  .llc-focus-field .is-one {
    left: -1%;
  }

  .llc-focus-field .is-two {
    right: -4%;
  }

  .llc-section-intro {
    margin-bottom: 56px;
  }

  .llc-section-intro h2,
  .llc-nature h2,
  .llc-wingwave h2,
  .llc-profile h2,
  .llc-fees h2,
  .llc-contact h2 {
    font-size: clamp(2.55rem, 12vw, 4.25rem);
    line-height: 1;
  }

  .llc-situation-tabs {
    grid-template-columns: 1fr;
  }

  .llc-situation-tabs button {
    border-right: 0;
  }

  .llc-situation-panels {
    min-height: 500px;
    padding: 30px 24px;
  }

  .llc-situation-panels h3 {
    font-size: 2.25rem;
  }

  .llc-pause {
    min-height: 520px;
    padding: 80px 24px;
  }

  .llc-pause p {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .llc-process__steps article {
    padding-bottom: 48px;
  }

  .llc-nature {
    min-height: 980px;
    padding-top: 120px;
    padding-bottom: 120px;
    gap: 72px;
  }

  .llc-nature__tools article {
    min-height: 130px;
  }

  .llc-fact-grid,
  .llc-field-grid {
    grid-template-columns: 1fr;
  }

  .llc-video-card {
    min-height: 350px;
  }

  .llc-video-card img,
  .llc-video-card video {
    min-height: 300px;
  }

  .llc-video-card button {
    left: 18px;
    right: 18px;
    bottom: 66px;
    justify-content: center;
  }

  .llc-accordions summary {
    min-height: 82px;
    font-size: 1.45rem;
  }

  .llc-accordions details > p {
    padding-right: 0;
  }

  .llc-profile__image img {
    max-height: 570px;
  }

  .llc-profile__boundary {
    padding: 22px;
  }

  .llc-fee-list > div {
    min-height: 92px;
  }

  .llc-contact {
    gap: 52px;
  }

  .llc-form {
    padding: 24px 18px;
  }

  .llc-boundary {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .llc-footer {
    padding-top: 58px;
  }

  .llc-legal-home {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .llc-legal {
    padding-top: 76px;
  }

  .llc-footer--legal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 370px) {
  :root {
    --pad: 16px;
  }

  .llc-wordmark {
    font-size: 0.95rem;
  }

  .llc-index-button {
    padding: 0 12px;
    gap: 9px;
  }

  .llc-index-icon {
    width: 18px;
  }

  .llc-index-icon i {
    width: 18px;
  }

  .llc-hero h1 {
    font-size: 2.82rem;
  }

  .llc-focus-field > span {
    font-size: 0.66rem;
  }

  .llc-situation-panels h3 {
    font-size: 2rem;
  }

  .llc-situation-panels {
    min-height: 540px;
  }

  .llc-pause p {
    font-size: 2.25rem;
  }

  .llc-contact h2,
  .llc-profile h2,
  .llc-wingwave h2,
  .llc-nature h2,
  .llc-fees h2,
  .llc-section-intro h2 {
    font-size: 2.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .llc-reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .llc-button,
  .llc-focus-field b,
  .llc-situation-panels li::before,
  .llc-credentials li::before {
    forced-color-adjust: none;
  }
}
