.ll-page {
  --ll-ink: #2f2924;
  --ll-muted: #746b64;
  --ll-line: rgba(47, 41, 36, 0.1);
  --ll-brand: #b6804f;
  --ll-brand-deep: #8b5b31;
  --ll-brand-soft: #f5eee7;
  --ll-surface: #fff;
  background: linear-gradient(180deg, #fff 0%, #fbf8f5 100%);
  color: var(--ll-ink);
}

.ll-wrap { width: min(calc(100% - 72px), 1180px); margin: 0 auto; }
.ll-wrap--narrow { width: min(calc(100% - 72px), 840px); }
.ll-section { padding: 72px 0; }
.ll-section--soft { background: #faf7f3; }
.ll-section--dark { background: #2f2924; color: #f8f2eb; }
.ll-center { text-align: center; }
.ll-mt { margin-top: 18px; }

.ll-hero { padding: 90px 0 64px; }
.ll-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgb(251 248 245 / 0%)), url(/images/landloard_bg.jpg) center top / cover no-repeat;
}

.ll-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.76) 46%, rgb(255 255 255 / 0%) 100%);
  pointer-events: none;
}

.ll-hero .ll-wrap {
  position: relative;
  z-index: 1;
}
.ll-kicker {
  display: inline-block;
  margin: 0;
  padding: 7px 14px;
  border: 1px solid #e7d8c9;
  background: var(--ll-brand-soft);
  color: var(--ll-brand-deep);
  font-weight: 700;
  font-size: 13px;
}

.ll-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  line-height: 1.28;
}

.ll-lead { color: var(--ll-muted); max-width: 780px; margin: 0 auto; font-size: 1.06rem; line-height: 1.8; }

.ll-head h2 { margin: 0 0 10px; font-size: clamp(1.9rem, 3.5vw, 2.7rem); line-height: 1.25; }
.ll-head p { margin: 0; color: var(--ll-muted); font-size: 1.04rem; }
.ll-head { margin-bottom: 26px; }

.ll-grid { display: grid; gap: 16px; }
.ll-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ll-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ll-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ll-card,
.ll-case,
.ll-pillar,
.ll-mini,
.ll-form,
.ll-contact-card {
  background: var(--ll-surface);
  border: 1px solid var(--ll-line);
  padding: 20px;
}

.ll-card--warm { background: #fdf7f1; border-color: #ebd8c6; }
.ll-card--cool { background: #f8f4ef; border-color: #e9ddd1; }
.ll-card--alert { background: #fff5f1; border-color: #f0d4c9; }

.ll-section--dark .ll-pillar,
.ll-section--dark .ll-note {
  color: var(--ll-ink);
}

.ll-section--dark .ll-pillar h3,
.ll-section--dark .ll-pillar li,
.ll-section--dark .ll-pillar p,
.ll-section--dark .ll-note h3,
.ll-section--dark .ll-note p {
  color: var(--ll-ink);
}

.ll-card h3,
.ll-case h3,
.ll-pillar h3,
.ll-mini h3,
.ll-contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.17rem;
}

.ll-card p,
.ll-case p,
.ll-pillar p,
.ll-contact-card p { margin: 0; color: var(--ll-muted); font-size: 1.02rem; line-height: 1.8; }

.ll-case ul,
.ll-pillar ul,
.ll-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ll-ink);
  font-size: 1rem;
  line-height: 1.8;
}

.ll-link {
  margin-top: 12px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ll-brand-deep);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.ll-more-cases { margin-top: 16px; }

.ll-btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  cursor: pointer;
}

.ll-btn--solid { background: var(--ll-brand); border-color: var(--ll-brand); color: #fff; }
.ll-btn--solid:hover { background: var(--ll-brand-deep); border-color: var(--ll-brand-deep); }
.ll-btn--outline { background: #fff; border-color: var(--ll-line); color: var(--ll-ink); }
.ll-btn--line { background: #0f7f3f; border-color: #0f7f3f; color: #fff; }

.ll-hero-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

.ll-note {
  margin-top: 16px;
  padding: 18px;
  background: #f7efe7;
  border: 1px solid #e6d5c3;
}

.ll-form { padding: 22px; }

.ll-form label { display: block; font-size: 15px; font-weight: 700; }
.ll-required { color: #d93025; margin-left: 4px; }
.ll-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.ll-fieldset legend {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.ll-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}
.ll-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  border: 1px solid #ddd2c5;
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  min-height: 34px;
}
.ll-checkbox input {
  width: auto;
  height: 15px;
  margin: 0;
  accent-color: #b6804f;
}
.ll-checkbox span {
  line-height: 1.2;
}
.ll-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.ll-form select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #ddd2c5;
  padding: 10px 12px;
  font-size: 15px;
  font: inherit;
  background: #fff;
}

.ll-form-actions { margin-top: 14px; display: flex; gap: 10px; justify-content: center; }
.ll-success {
  margin: 14px 0 0;
  border: 1px solid #b7d7be;
  background: #edf8f0;
  color: #1f6d2e;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 1rem;
}

.ll-notice {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: min(calc(100% - 32px), 420px);
  text-align: center;
  pointer-events: none;
}

.ll-notice__text {
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
}

.ll-notice.is-success .ll-notice__text {
  background: #1f8f4d;
}

.ll-notice.is-error .ll-notice__text {
  background: #cf2e2e;
}

.ll-contact-card { margin-top: 18px; }

@media (max-width: 980px) {
  .ll-grid--3,
  .ll-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ll-checkbox-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .ll-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.86) 100%);
  }
}

@media (max-width: 760px) {
  .ll-wrap,
  .ll-wrap--narrow { width: min(calc(100% - 36px), 1180px); }
  .ll-grid--2,
  .ll-grid--3,
  .ll-grid--4 { grid-template-columns: 1fr; }
  .ll-checkbox-grid { grid-template-columns: 1fr; }
  .ll-section { padding: 56px 0; }
  .ll-form-actions { flex-direction: column; }

  .ll-hero {
    background: linear-gradient(180deg, rgb(255 255 255 / 0%), rgb(255 255 255 / 0%)), url(/images/landloard_bg.jpg) center top / cover no-repeat;
  }
}
