:root {
  --bg: #eee8db;
  --bg-soft: #f5f1e8;
  --bg-card: rgba(255, 252, 244, 0.82);
  --green: #1f3a2f;
  --green-muted: #52675d;
  --line: rgba(31, 58, 47, 0.18);
  --shadow: 0 24px 70px rgba(44, 54, 42, 0.12);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--green);
  background: var(--bg);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(238, 232, 219, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: grid;
  gap: 2px;
  letter-spacing: 0.08em;
}
.brand span {
  font-size: 14px;
  font-weight: 500;
}
.brand small {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--green-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.nav a {
  opacity: 0.82;
  transition: opacity 0.25s ease;
}
.nav a:hover {
  opacity: 1;
}
.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) 0;
}

.section-soft {
  width: 100%;
  margin: 0;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(255, 255, 255, 0.72),
      transparent 32%
    ),
    linear-gradient(135deg, var(--bg-soft), #e8dfce);
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
  background: #e7dfd0;
}

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  left: -120px;
  bottom: -90px;
}
.business,
.order {
  position: relative;
  overflow: hidden;
}
.business::before {
  right: -130px;
  top: 20px;
}
.order::before {
  left: -110px;
  bottom: -130px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-muted);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(56px, 9vw, 126px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  font-weight: 300;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
}
p,
li {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.62;
  color: var(--green-muted);
}

.hero-title {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(24px, 3.4vw, 48px);
  line-height: 1.16;
  color: var(--green);
  font-weight: 300;
}
.hero-text {
  max-width: 650px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-actions.center {
  justify-content: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--green);
  color: #f8f3e9;
  border: 1px solid var(--green);
  font-size: 15px;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.secondary {
  background: transparent;
  color: var(--green);
}
.button.secondary:hover {
  background: rgba(31, 58, 47, 0.06);
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 620px;
  box-shadow: var(--shadow);
}
.hero-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 44% center;
}
.hero-image-wrap::after,
.photo-card::after,
.visual-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 241, 232, 0.04),
    rgba(31, 58, 47, 0.12)
  );
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.84);
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.grid-two {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.card-list,
.benefit-grid,
.why-grid,
.mini-grid {
  display: grid;
  gap: 14px;
}
.card-list {
  grid-template-columns: 1fr 1fr;
}

.white-card,
.pill,
.price-card,
.content-card,
.order-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 34px rgba(44, 54, 42, 0.08);
}
.white-card {
  min-height: 86px;
  padding: 22px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.45;
  color: var(--green);
}
.hover-card {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}
.hover-card:hover {
  transform: scale(1.025);
  box-shadow: 0 24px 58px rgba(44, 54, 42, 0.14);
  background: rgba(255, 252, 244, 0.96);
}

.split-photo {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
}
.split-photo.reverse {
  grid-template-columns: 1fr 0.82fr;
}
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.photo-card.tall img {
  height: 680px;
  width: 100%;
  object-fit: cover;
}
.content-card {
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-lg);
}
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.clean-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.clean-list li::before {
  content: "•";
  margin-right: 12px;
  color: var(--green);
}

.section-head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-head.narrow {
  max-width: 760px;
}
.pill-grid {
  width: min(940px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.pill {
  padding: 16px 22px;
  border-radius: 999px;
  color: var(--green);
}
.wide-note {
  width: min(820px, 100%);
  margin: 34px auto 0;
  text-align: center;
}

.result-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.sticky-title {
  position: sticky;
  top: 112px;
}
.benefit-grid {
  grid-template-columns: 1fr 1fr;
}
.benefit-grid .white-card {
  min-height: 126px;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
.benefit-grid strong {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--green-muted);
  font-weight: 500;
}
.benefit-grid span {
  font-size: 17px;
  line-height: 1.45;
}

.steps {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  min-height: 310px;
  align-items: flex-start;
  flex-direction: column;
}
.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
}
.step p {
  font-size: 15px;
  line-height: 1.55;
}

.visual-statement {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: grid;
  align-items: end;
  padding: clamp(30px, 6vw, 70px);
  box-shadow: var(--shadow);
}
.visual-statement img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}
.visual-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(238, 232, 219, 0.9),
    rgba(238, 232, 219, 0.72) 45%,
    rgba(238, 232, 219, 0.2)
  );
  z-index: 1;
}
.visual-statement::after {
  z-index: 1;
}
.visual-statement > div {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.visual-statement h2 {
  font-size: clamp(34px, 5.6vw, 76px);
}

.price-section {
  padding-top: 30px;
}
.price-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius-lg);
  text-align: center;
}
.price-card h2 {
  font-size: clamp(34px, 5vw, 68px);
}
.price-card p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.price-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 36px;
}
.price-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--green-muted);
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}
.why-grid .white-card {
  text-align: center;
  justify-content: center;
}

.mini-grid {
  grid-template-columns: 1fr 1fr;
}
.mini-grid .white-card {
  justify-content: center;
  text-align: center;
  min-height: 78px;
  padding: 18px;
}

.order {
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}
.order-card {
  position: relative;
  z-index: 2;
  width: min(870px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 76px);
  border-radius: var(--radius-lg);
  text-align: center;
}
.handle {
  margin: 28px 0 0;
  color: var(--green);
  letter-spacing: 0.06em;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--green-muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .hero,
  .grid-two,
  .split-photo,
  .split-photo.reverse,
  .result-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-wrap,
  .hero-image {
    min-height: 520px;
  }
  .sticky-title {
    position: static;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }
  .section {
    width: min(100% - 28px, 1180px);
    padding: 56px 0;
  }
  .section-soft,
  .section-muted {
    padding-left: 14px;
    padding-right: 14px;
  }
  h1 {
    font-size: clamp(48px, 14vw, 76px);
  }
  h2 {
    font-size: clamp(30px, 10vw, 46px);
  }
  .hero {
    padding-top: 58px;
    padding-bottom: 64px;
  }
  .hero-actions,
  .hero-actions.center {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .card-list,
  .benefit-grid,
  .steps,
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .photo-card.tall img {
    height: 520px;
  }
  .visual-statement {
    min-height: 560px;
  }
  .visual-statement::before {
    background: linear-gradient(
      180deg,
      rgba(238, 232, 219, 0.92),
      rgba(238, 232, 219, 0.72),
      rgba(238, 232, 219, 0.26)
    );
  }
  .footer {
    flex-direction: column;
  }
}
