:root {
  color: #24312b;
  background: #f4f2ec;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-synthesis: none;
  --ink: #24312b;
  --forest: #1f332b;
  --paper: #f8f6f0;
  --coral: #df674a;
  --line: #d8d7cf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); }
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute; z-index: 10; top: 0; left: 0; right: 0;
  height: 72px; padding: 0 clamp(18px, 5vw, 72px);
  display: flex; align-items: center; justify-content: space-between;
  color: white; border-bottom: 1px solid rgb(255 255 255 / 30%);
}
.brand { font-size: 20px; font-weight: 900; }
.brand span { margin-left: 8px; font-size: 10px; font-weight: 700; opacity: .78; }
.site-header nav, footer nav { display: flex; align-items: center; gap: 22px; font-size: 12px; font-weight: 700; }
.header-action { padding: 9px 13px; border: 1px solid rgb(255 255 255 / 60%); border-radius: 6px; }

.hero { position: relative; min-height: min(92vh, 820px); overflow: hidden; color: white; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(16 34 27 / 88%), rgb(16 34 27 / 20%) 70%), linear-gradient(0deg, rgb(16 34 27 / 55%), transparent 45%); }
.hero-copy { position: absolute; z-index: 2; left: clamp(20px, 8vw, 120px); bottom: clamp(68px, 12vh, 130px); max-width: 620px; }
.kicker { margin: 0 0 12px; color: #d48b62; font-size: 11px; font-weight: 900; letter-spacing: 0; }
.hero h1 { margin: 0; font-size: clamp(58px, 11vw, 128px); line-height: .95; letter-spacing: 0; }
.hero-copy > p:not(.kicker) { margin: 18px 0 28px; font-size: clamp(15px, 2vw, 20px); font-weight: 700; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.primary-button, .secondary-button {
  display: inline-flex; min-height: 48px; padding: 0 22px; align-items: center; justify-content: center;
  border-radius: 6px; background: var(--coral); color: white; font-size: 13px; font-weight: 900;
}
.text-link { padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 800; }

.world-section, .install-section { padding: 84px clamp(20px, 8vw, 120px); }
.section-title { max-width: 700px; }
h2 { margin: 0 0 14px; font-size: clamp(28px, 4vw, 48px); line-height: 1.25; letter-spacing: 0; }
.section-title > p:last-child, .creature-copy > p:not(.kicker) { color: #64716a; line-height: 1.9; font-size: 14px; }
.feature-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.feature-grid article { padding: 24px 28px 20px 0; border-right: 1px solid var(--line); }
.feature-grid article + article { padding-left: 28px; }
.feature-grid article:last-child { border-right: 0; }
.feature-grid span { color: var(--coral); font-size: 11px; font-weight: 900; }
.feature-grid h3 { margin: 18px 0 8px; font-size: 22px; }
.feature-grid p { margin: 0; color: #68736d; font-size: 13px; line-height: 1.8; }

.creature-section {
  min-height: 560px; display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  overflow: hidden; background: #243c32; color: white;
}
.creature-copy { padding: 70px clamp(20px, 8vw, 120px); }
.creature-copy > p:not(.kicker) { color: #c5d0ca; }
.secondary-button { margin-top: 18px; background: transparent; border: 1px solid #8da498; }
.creature-section img { width: 100%; height: 560px; object-fit: contain; filter: drop-shadow(0 24px 22px rgb(0 0 0 / 30%)); }

.install-section { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.install-list { border-top: 1px solid var(--line); }
.install-list p { margin: 0; padding: 18px 0; display: grid; grid-template-columns: 120px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.install-list strong { font-size: 13px; }.install-list span { color: #68736d; font-size: 12px; line-height: 1.7; }
footer { min-height: 100px; padding: 24px clamp(20px, 8vw, 120px); display: flex; align-items: center; gap: 18px; background: #18261f; color: white; }
footer span { color: #9caaa2; font-size: 11px; } footer nav { margin-left: auto; color: #b5c0ba; }

@media (max-width: 700px) {
  .site-header { height: 62px; }.site-header nav > a:not(.header-action) { display: none; }
  .hero { min-height: 86vh; }.hero > img { object-position: 56% center; }.hero-shade { background: linear-gradient(0deg, rgb(16 34 27 / 93%), rgb(16 34 27 / 8%) 76%); }
  .hero-copy { left: 20px; right: 20px; bottom: 42px; }.hero h1 { font-size: 62px; }
  .world-section, .install-section { padding: 58px 20px; }
  .feature-grid { grid-template-columns: 1fr; }.feature-grid article, .feature-grid article + article { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .creature-section { grid-template-columns: 1fr; }.creature-copy { padding: 56px 20px 20px; }.creature-section img { height: 390px; }
  .install-section { grid-template-columns: 1fr; }.install-list p { grid-template-columns: 90px 1fr; }
  footer { align-items: flex-start; flex-direction: column; } footer nav { margin-left: 0; }
}
