:root {
  color-scheme: light;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  background: #f6f5ef;
  color: #263b30;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body { margin: 0; }

.page {
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px clamp(24px, 5vw, 80px) 27px;
}

.site-header, .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  color: inherit;
  text-decoration: none;
  font: 700 clamp(22px, 2.3vw, 29px)/1 Arial, sans-serif;
  letter-spacing: -.06em;
}

.wordmark span { color: #d99571; margin-left: 4px; font-size: .75em; vertical-align: top; }

.status {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border: 1px solid #c7d3c8;
  border-radius: 100px;
  padding: 8px 14px;
  color: #597365;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
}

.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #86a893; }

.hero {
  flex: 1;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: 40px;
}

.hero-copy { position: relative; z-index: 1; padding: 24px 0 40px; }

.eyebrow {
  margin: 0 0 34px;
  color: #a4745b;
  font: 700 11px/1.5 Arial, sans-serif;
  letter-spacing: .28em;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 96px);
  line-height: 1.32;
  letter-spacing: -.07em;
  font-weight: 600;
  white-space: nowrap;
}

h1 em { color: #bc7658; font-style: normal; }

.lead {
  margin: 36px 0 0;
  color: #697a6d;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 2.1;
  letter-spacing: .065em;
}

.art {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 48%, #f7f0e6 0 33%, #e9eee6 34% 59%, #eff1ea 60% 100%);
}

.art-orbit { position: absolute; inset: 12%; border: 1px solid rgba(116, 146, 116, .2); border-radius: 50%; }
.orbit-two { inset: 28%; }

.petal {
  position: absolute;
  width: 25%;
  height: 41%;
  left: 37.5%;
  top: 11%;
  border-radius: 60% 60% 45% 45%;
  background: linear-gradient(150deg, #efbb9f, #c9765f);
  transform-origin: 50% 95%;
  box-shadow: inset 12px 10px 28px rgba(255,255,255,.2), 8px 10px 25px rgba(120,77,59,.08);
}

.petal-one { transform: rotate(0deg); }
.petal-two { transform: rotate(72deg); }
.petal-three { transform: rotate(144deg); }
.petal-four { transform: rotate(216deg); }
.petal-five { transform: rotate(288deg); }
.flower-center {
  position: absolute;
  width: 19%;
  aspect-ratio: 1;
  top: 40.5%;
  left: 40.5%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #f4d697, #ddae63 68%, #c98f51);
  box-shadow: 0 6px 18px rgba(116,76,45,.12);
}

.art-star { position: absolute; color: #9db6a2; font-size: 28px; }
.star-one { left: 7%; top: 18%; }
.star-two { right: 5%; bottom: 18%; font-size: 20px; }

.site-footer {
  color: #8a988b;
  font: 500 11px/1.5 Arial, sans-serif;
  letter-spacing: .11em;
}

@media (max-width: 800px) {
  .page { min-height: 100svh; padding: 24px 22px; }
  .hero { min-height: unset; grid-template-columns: 1fr; gap: 0; padding: 60px 0 42px; }
  .hero-copy { padding: 0; }
  .eyebrow { margin-bottom: 22px; font-size: 10px; }
  h1 { font-size: clamp(46px, 11vw, 72px); }
  .lead { margin-top: 24px; font-size: 13px; }
  .art { width: min(78vw, 370px); margin-top: 14px; }
}

@media (prefers-reduced-motion: no-preference) {
  .art { animation: arrive 1.1s ease-out both; }
  @keyframes arrive { from { opacity: 0; transform: scale(.94) rotate(-8deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
}
