
:root {
  --bg: #f5f1ea;
  --paper: #fffdf8;
  --ink: #111312;
  --muted: #5c625b;
  --green: #31563d;
  --line: rgba(17, 19, 18, 0.12);
  --shadow: 0 24px 70px rgba(32, 37, 33, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Noto Sans JP", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
}
a { color: inherit; }
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(245, 241, 234, 0.84);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
}
.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.32em;
  font-size: 26px;
}
.nav nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white !important;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid var(--green);
  cursor: pointer;
}
.button.small { padding: 10px 16px; }
.button.ghost {
  background: transparent;
  color: var(--green) !important;
}
.hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding: 76px 5vw 42px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 900;
  color: var(--green);
  margin: 0 0 18px;
}
h1 {
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.88;
  margin: 0 0 28px;
  letter-spacing: -0.07em;
}
h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 22px;
  letter-spacing: -0.055em;
}
h3 {
  font-size: 24px;
  margin: 18px 0 10px;
  letter-spacing: -0.03em;
}
.lead {
  font-size: 22px;
  color: var(--muted);
  max-width: 620px;
}
.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-tags span {
  background: rgba(49,86,61,.1);
  color: var(--green);
  border: 1px solid rgba(49,86,61,.18);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card img {
  width: 100%;
  display: block;
}
.statement {
  margin: 36px 5vw 0;
  padding: 58px 8vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.statement p {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.045em;
  font-weight: 800;
}
.benefits, .markets, .contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  padding: 88px 5vw;
  align-items: start;
}
.benefit-copy p, .markets p, .cards p, .ethos p, .contact p, .market-list span, .benefit-grid span {
  font-size: 18px;
  color: var(--muted);
}
.benefit-grid, .market-list {
  display: grid;
  gap: 14px;
}
.benefit-grid div, .market-list div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.benefit-grid strong, .market-list strong {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.range {
  padding: 88px 5vw;
  background: #eee8dd;
}
.center { text-align: center; }
.narrow {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.cards article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  min-height: 360px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cards article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cards article img {
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
}
.pill {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: white;
}
.green { background: #31563d; }
.pink { background: #cc6c7b; }
.peach { background: #e48755; }
.violet { background: #8369a4; }
.brown { background: #6b452f; }
.gold { background: #9c8b2c; }
.ethos {
  padding: 92px 5vw;
  background: var(--paper);
}
.ethos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.ethos-grid div {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
}
.contact {
  background: #e7dfd2;
}
.contact-details {
  margin-top: 24px;
  line-height: 1.8;
}
form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.hidden { display: none; }
footer {
  padding: 42px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer a { color: var(--muted); }
.thankyou {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 5vw;
  text-align: center;
}
.thankyou .brand { margin: 0 auto 24px; }
@media (max-width: 980px) {
  .nav nav { display: none; }
  .hero, .benefits, .markets, .contact { grid-template-columns: 1fr; }
  .cards, .ethos-grid { grid-template-columns: 1fr; }
  footer { display: block; }
}
@media (max-width: 560px) {
  .hero { padding-top: 48px; }
  .button { width: 100%; }
  .statement { padding: 44px 0; }
  .cards article { min-height: auto; }
}
