:root {
  --paper: #f5f0e4;
  --paper-deep: #e9e0cd;
  --ink: #28342b;
  --muted: #6e766d;
  --green: #586b55;
  --green-dark: #354438;
  --green-light: #dbe3d4;
  --clay: #d37a5b;
  --sand: #d9bd94;
  --line: rgba(40, 52, 43, .12);
  --shadow: 0 26px 70px rgba(47, 59, 49, .14);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 6%, rgba(217, 189, 148, .27), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(122, 145, 112, .17), transparent 26%),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a:focus-visible {
  outline: 3px solid rgba(211, 122, 91, .38);
  outline-offset: 4px;
  border-radius: 6px;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(40, 52, 43, .08);
  background: rgba(245, 240, 228, .88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: .06em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #536057;
  font-size: 14px;
}

.header-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.header-links a:hover,
.header-links a[aria-current="page"] {
  color: var(--green-dark);
  border-color: var(--clay);
}

.hero {
  min-height: 760px;
  padding: 86px 0 74px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .16em;
}

.eyebrow::before {
  content: "";
  width: 29px;
  height: 2px;
  background: var(--clay);
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

h1 span {
  display: block;
  color: var(--green);
}

.hero-copy > p {
  max-width: 570px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  min-height: 48px;
  padding: 0 23px;
  border: 1px solid rgba(40, 52, 43, .17);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 750;
  transition: transform .25s, box-shadow .25s;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff9ec;
  box-shadow: 0 14px 30px rgba(53, 68, 56, .2);
}

.hero-art {
  position: relative;
  min-height: 570px;
  border-radius: 48px;
  background: linear-gradient(150deg, #dce3d4, #c8d2bf);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -70px;
  top: -55px;
  border-radius: 50%;
  background: var(--clay);
  opacity: .88;
}

.hero-landscape {
  position: absolute;
  width: 112%;
  left: -7%;
  bottom: -3%;
  filter: drop-shadow(0 24px 40px rgba(44, 56, 46, .18));
}

.hero-mark {
  position: absolute;
  z-index: 3;
  width: 120px;
  left: 34px;
  top: 34px;
  padding: 12px;
  border-radius: 25px;
  background: rgba(255, 253, 247, .72);
  box-shadow: 0 16px 34px rgba(47, 59, 49, .13);
  backdrop-filter: blur(12px);
}

.hero-note {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 30px;
  width: min(265px, calc(100% - 56px));
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 249, 236, .92);
  box-shadow: 0 16px 34px rgba(47, 59, 49, .16);
}

.hero-note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.hero-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

section { padding: 105px 0; }

.manifesto-wrap {
  padding: clamp(44px, 7vw, 82px);
  border-radius: 44px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(40px, 8vw, 100px);
  background: var(--green-dark);
  color: #fff8e9;
  box-shadow: var(--shadow);
}

.section-label {
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .15em;
}

.manifesto-wrap .section-label { color: #efb89a; }

.manifesto-wrap h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.manifesto-copy p {
  color: rgba(255, 248, 233, .7);
  font-size: 17px;
  line-height: 1.95;
}

.manifesto-copy p:last-child { margin-bottom: 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
  margin-bottom: 42px;
}

.section-head h2 {
  max-width: 660px;
  margin: 12px 0 0;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.section-head > p {
  max-width: 450px;
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  min-height: 260px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 30px;
  background: rgba(255, 253, 247, .56);
  transition: transform .3s, box-shadow .3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-number {
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.value-card:nth-child(2) .value-number,
.value-card:nth-child(3) .value-number {
  background: rgba(211, 122, 91, .13);
  color: #aa593f;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.making-section {
  background: rgba(233, 224, 205, .46);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.making-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.making-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 253, 247, .72);
  box-shadow: 0 16px 42px rgba(47, 59, 49, .08);
}

.making-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.making-body { padding: 26px 25px 29px; }

.making-body small {
  color: var(--clay);
  font-weight: 850;
  letter-spacing: .1em;
}

.making-body h3 {
  margin: 10px 0 9px;
  font-size: 23px;
}

.making-body p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.promise {
  text-align: center;
}

.promise blockquote {
  max-width: 930px;
  margin: 0 auto;
  font-size: clamp(34px, 5.6vw, 66px);
  line-height: 1.25;
  letter-spacing: -.045em;
  font-weight: 850;
}

.promise blockquote span { color: var(--clay); }

.promise p {
  margin: 25px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.cta { padding-top: 20px; padding-bottom: 130px; }

.cta-card {
  position: relative;
  min-height: 360px;
  padding: clamp(38px, 7vw, 76px);
  border-radius: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #e4d5b9;
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.cta-card::before {
  width: 440px;
  height: 440px;
  right: -95px;
  top: -220px;
  background: #71846a;
}

.cta-card::after {
  width: 270px;
  height: 270px;
  right: 130px;
  bottom: -180px;
  background: var(--clay);
}

.cta-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.cta-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(40px, 6vw, 66px);
  letter-spacing: -.045em;
}

.cta-copy p {
  max-width: 520px;
  margin-bottom: 26px;
  color: #69665c;
  line-height: 1.8;
}

.site-footer {
  padding: 52px 0 68px;
  background: #253128;
  color: #f9f2e3;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
}

.footer-brand img {
  width: 44px;
  height: 44px;
}

.footer-copy {
  margin: 13px 0 0;
  color: rgba(249, 242, 227, .54);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 19px;
  font-size: 13px;
}

.footer-links a {
  color: rgba(249, 242, 227, .72);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  color: #fff8e9;
  text-decoration-color: var(--clay);
}

@media (max-width: 930px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 540px; }
  .manifesto-wrap { grid-template-columns: 1fr; }
  .making-grid { grid-template-columns: 1fr 1fr; }
  .making-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 68px; }
  .header-links a:nth-child(2) { display: none; }
  .hero { padding: 58px 0 52px; }
  .hero-art { min-height: 420px; border-radius: 32px; }
  .hero-mark { width: 86px; left: 20px; top: 20px; padding: 8px; border-radius: 18px; }
  .hero-note { right: 18px; bottom: 18px; }
  section { padding: 76px 0; }
  .manifesto-wrap { padding: 40px 25px; border-radius: 30px; }
  .section-head { display: block; }
  .section-head > p { margin-top: 18px; }
  .values-grid,
  .making-grid { grid-template-columns: 1fr; }
  .making-card:last-child { grid-column: auto; }
  .value-card { min-height: 235px; padding: 26px; }
  .value-number { margin-bottom: 30px; }
  .cta { padding-bottom: 88px; }
  .cta-card { min-height: 440px; align-items: flex-start; border-radius: 31px; }
  .cta-card::before { width: 340px; height: 340px; right: -160px; top: 190px; }
  .cta-card::after { width: 210px; height: 210px; right: 40px; bottom: -145px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
