:root {
  color-scheme: light;
  --ink: #232323;
  --muted: #666b70;
  --soft: #f6f3ee;
  --paper: #fffdf8;
  --line: #ded7cc;
  --accent: #2f6f5e;
  --accent-soft: #dfece5;
  --gold: #d5a94f;
  --shadow: 0 24px 70px rgba(42, 35, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 243, 238, 0.96)),
    radial-gradient(circle at 18% 16%, rgba(213, 169, 79, 0.14), transparent 28%),
    var(--soft);
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.page {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: center;
  min-height: 520px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

.intro {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.85;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(47, 111, 94, 0.22);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.visual {
  position: relative;
  min-height: 360px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 246, 235, 0.78)),
    var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(47, 111, 94, 0.13);
  border-radius: 6px;
}

.sun {
  position: absolute;
  top: 46px;
  right: 50px;
  width: 74px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 16px rgba(213, 169, 79, 0.15);
}

.paper {
  position: absolute;
  left: 54px;
  width: 185px;
  height: 118px;
  border: 1px solid rgba(47, 111, 94, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
}

.paper-one {
  top: 92px;
  transform: rotate(-4deg);
}

.paper-two {
  top: 150px;
  left: 110px;
  transform: rotate(5deg);
}

.line {
  position: absolute;
  left: 62px;
  right: 54px;
  height: 1px;
  background: var(--line);
}

.line-one {
  bottom: 104px;
}

.line-two {
  bottom: 76px;
}

.line-three {
  bottom: 48px;
}

.section,
.grid article {
  border-top: 1px solid rgba(35, 35, 35, 0.1);
  padding-top: 28px;
}

.section {
  max-width: 780px;
  margin: 22px 0 48px;
}

.section p,
.grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 54px;
}

.grid article {
  min-height: 150px;
}

.contact {
  margin-bottom: 0;
}

.footer {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(35, 35, 35, 0.1);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 14px;
}

@media (max-width: 820px) {
  .page {
    width: min(100% - 28px, 620px);
    padding-top: 44px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .visual {
    min-height: 260px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
