:root {
  --sp-ink: #1F2A22;
  --sp-forest: #315B43;
  --sp-moss: #6F8A68;
  --sp-sage: #E8EEE3;
  --sp-paper: #F8F5ED;
  --sp-white: #FFFFFF;
  --sp-clay: #CBA98F;
  --sp-muted: #667066;
  --sp-border: rgba(31, 42, 34, .13);
  --sp-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sp-shadow: rgba(31, 42, 34, .1) 0 18px 50px;
}

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

body {
  margin: 0;
  color: var(--sp-ink);
  background: var(--sp-paper);
  font-family: var(--sp-font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(42px, 6vw, 82px); }
h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 54px); }
h3 { margin-bottom: 10px; font-size: 20px; }
p { margin-bottom: 18px; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.sp-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-kicker {
  margin-bottom: 14px;
  color: var(--sp-forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sp-section {
  padding: 88px 0;
  background: var(--sp-paper);
}

.sp-section--sage { background: var(--sp-sage); }
.sp-section--light { background: #FBFAF5; }
.sp-section--case { background: #F1EBDD; }

.sp-section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(203, 169, 143, .22), transparent 34%),
    linear-gradient(135deg, #1C2C22 0%, #315B43 100%);
}

.sp-section--dark h2,
.sp-section--dark h3 { color: #fff; }

.sp-section--dark p,
.sp-section--dark span { color: rgba(255, 255, 255, .76); }

.sp-button {
  min-height: 44px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--sp-forest);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.sp-button:hover {
  background: #243F30;
  transform: translateY(-2px);
}

.sp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sp-forest);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sp-link::after { content: "→"; font-size: 12px; }

.sp-hero {
  padding: 74px 0 82px;
  background:
    linear-gradient(115deg, rgba(248, 245, 237, .98) 0%, rgba(232, 238, 227, .92) 52%, rgba(232, 238, 227, .2) 100%),
    #F8F5ED;
}

.sp-hero__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.sp-hero__copy p:not(.sp-kicker) {
  max-width: 650px;
  color: var(--sp-muted);
  font-size: 17px;
}

.sp-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sp-hero__visual {
  position: relative;
  padding: 18px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(49, 91, 67, .12);
  box-shadow: var(--sp-shadow);
}

.sp-hero__visual img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.sp-hero__note {
  position: absolute;
  right: 34px;
  bottom: -34px;
  width: min(330px, calc(100% - 68px));
  padding: 22px 24px;
  background: var(--sp-white);
  border-left: 4px solid var(--sp-forest);
  box-shadow: var(--sp-shadow);
}

.sp-hero__note strong,
.sp-hero__note span { display: block; }

.sp-hero__note strong {
  margin-bottom: 6px;
  color: var(--sp-forest);
  font-size: 13px;
}

.sp-hero__note span {
  color: var(--sp-muted);
  font-size: 12px;
  line-height: 1.65;
}

.sp-principles {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 62px;
}

.sp-principles__list {
  display: grid;
  gap: 18px;
}

.sp-principles__list article {
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--sp-border);
}

.sp-principles__list span {
  display: block;
  margin-bottom: 16px;
  color: var(--sp-clay);
  font-size: 12px;
  font-weight: 700;
}

.sp-principles__list p {
  margin-bottom: 0;
  color: var(--sp-muted);
  font-size: 13px;
}

.sp-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.sp-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sp-route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.sp-route {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--sp-border);
}

.sp-route--wide {
  grid-column: 1 / -1;
  grid-template-columns: .8fr 1.2fr;
}

.sp-route img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.sp-route:not(.sp-route--wide) img {
  aspect-ratio: 1.1 / 1;
  min-height: 0;
}

.sp-route div {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-route span {
  margin-bottom: 12px;
  color: var(--sp-forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sp-route p {
  margin-bottom: 0;
  color: var(--sp-muted);
  font-size: 13px;
}

.sp-matrix {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 54px;
  align-items: start;
}

.sp-matrix__intro {
  position: sticky;
  top: 28px;
}

.sp-matrix__intro p:not(.sp-kicker) { color: var(--sp-muted); }

.sp-matrix__table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sp-border);
}

.sp-matrix__table div {
  display: grid;
  grid-template-columns: .8fr .95fr 1.25fr;
  gap: 22px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--sp-border);
}

.sp-matrix__table div:last-child { border-bottom: 0; }

.sp-matrix__table strong,
.sp-matrix__table span,
.sp-matrix__table small { font-size: 13px; line-height: 1.65; }

.sp-matrix__table span {
  color: var(--sp-forest);
  font-weight: 700;
}

.sp-matrix__table small { color: var(--sp-muted); }

.sp-less {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 58px;
  align-items: center;
}

.sp-less__visual {
  padding: 16px;
  background: #fff;
  box-shadow: var(--sp-shadow);
}

.sp-less__visual img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.sp-less__copy p,
.sp-less__copy li { color: var(--sp-muted); }

.sp-less__copy ul {
  margin: 24px 0 0;
  padding-left: 18px;
}

.sp-less__copy li { margin-bottom: 8px; }

.sp-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sp-border);
  border: 1px solid var(--sp-border);
}

.sp-choice-grid article {
  min-height: 190px;
  padding: 26px 24px;
  background: var(--sp-white);
}

.sp-choice-grid strong,
.sp-choice-grid span { display: block; }

.sp-choice-grid strong {
  margin-bottom: 14px;
  color: var(--sp-forest);
}

.sp-choice-grid span {
  color: var(--sp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.sp-system {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
  align-items: start;
}

.sp-system__copy p:not(.sp-kicker) { color: var(--sp-muted); }

.sp-system__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sp-system__cards div {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--sp-border);
}

.sp-system__cards strong,
.sp-system__cards span { display: block; }

.sp-system__cards strong {
  margin-bottom: 8px;
  color: var(--sp-forest);
}

.sp-system__cards span {
  color: var(--sp-muted);
  font-size: 12px;
  line-height: 1.65;
}

.sp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sp-gallery article {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--sp-border);
}

.sp-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #F3F1EA;
}

.sp-gallery span {
  display: block;
  padding: 16px 4px 2px;
  color: var(--sp-forest);
  font-size: 13px;
  font-weight: 700;
}

.sp-section--case .sp-heading p:not(.sp-kicker) {
  max-width: 720px;
  color: var(--sp-muted);
}

.sp-case-stack {
  display: grid;
  gap: 18px;
}

.sp-case-card {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sp-border);
  box-shadow: rgba(31, 42, 34, .07) 0 12px 40px;
}

.sp-case-card--feature {
  grid-template-columns: .95fr 1.05fr;
}

.sp-case-card__media {
  min-height: 280px;
  background: #ECE8DD;
}

.sp-case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-case-card__content {
  padding: 34px 36px;
}

.sp-case-card__content > span {
  display: block;
  margin-bottom: 14px;
  color: var(--sp-forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sp-case-card__content p {
  color: var(--sp-muted);
  font-size: 14px;
}

.sp-case-card dl {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sp-case-card dl div {
  padding-top: 14px;
  border-top: 1px solid var(--sp-border);
}

.sp-case-card dt {
  margin-bottom: 4px;
  color: var(--sp-forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sp-case-card dd {
  margin: 0;
  color: var(--sp-muted);
  font-size: 12px;
  line-height: 1.55;
}

.sp-brief {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 60px;
}

.sp-brief__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sp-brief__list div {
  padding: 22px 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.sp-brief__list strong,
.sp-brief__list span { display: block; }

.sp-brief__list strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 14px;
}

.sp-brief__list span {
  font-size: 12px;
  line-height: 1.65;
}

.sp-final {
  padding: 88px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(31, 42, 34, .94), rgba(31, 42, 34, .62)),
    url("assets/sage-gift-box-and-bag.webp") center / cover no-repeat;
}

.sp-final__inner {
  max-width: 820px;
  text-align: center;
}

.sp-final h2 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 62px);
}

.sp-final p:not(.sp-kicker) {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .78);
}

.sp-final .sp-button {
  color: var(--sp-ink);
  background: #fff;
}

.sp-final .sp-button:hover { background: var(--sp-sage); }

@media (max-width: 992px) {
  .sp-section { padding: 70px 0; }
  .sp-hero__grid,
  .sp-principles,
  .sp-matrix,
  .sp-less,
  .sp-system,
  .sp-brief {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sp-matrix__intro {
    position: static;
  }

  .sp-route--wide { grid-template-columns: 1fr; }
  .sp-choice-grid,
  .sp-gallery { grid-template-columns: repeat(2, 1fr); }
  .sp-case-card,
  .sp-case-card--feature { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  body { font-size: 14px; }
  .sp-shell { padding: 0 18px; }
  .sp-hero { padding: 48px 0 70px; }
  .sp-actions { align-items: stretch; flex-direction: column; }
  .sp-button { width: 100%; }
  .sp-hero__visual { padding: 10px; }
  .sp-hero__note { position: static; width: auto; margin-top: 12px; box-shadow: none; }
  .sp-section { padding: 52px 0; }
  .sp-route-grid,
  .sp-choice-grid,
  .sp-system__cards,
  .sp-gallery,
  .sp-brief__list { grid-template-columns: 1fr; }
  .sp-route img { min-height: 240px; }
  .sp-route div { padding: 26px 22px; }
  .sp-matrix__table div { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .sp-choice-grid article { min-height: auto; }
  .sp-case-card__media { min-height: 220px; }
  .sp-case-card__content { padding: 26px 22px; }
  .sp-case-card dl { grid-template-columns: 1fr; }
  .sp-final { padding: 64px 0; }
}
