:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5f6c66;
  --line: #dce5df;
  --paper: #fbfcfa;
  --surface: #f3f7f4;
  --green: #165a4a;
  --green-2: #0f3f35;
  --brass: #94681d;
  --coral: #bd634d;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 250, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1180px;
  min-height: 68px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; text-decoration: none; }
.mark { width: 32px; height: 32px; border-radius: 7px; background: linear-gradient(135deg, var(--green), var(--brass)); display: grid; place-items: center; color: #fff; font-size: 15px; }
.links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; font-weight: 750; }
.links a { text-decoration: none; }
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 15px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
}
.button.secondary { background: #fff; color: var(--green); border: 1px solid #bad2c8; }
.hero {
  min-height: min(700px, calc(100vh - 118px));
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,252,250,.98) 0%, rgba(251,252,250,.92) 35%, rgba(251,252,250,.28) 68%, rgba(251,252,250,.1) 100%);
  z-index: 1;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 84px 22px 72px;
}
.eyebrow { color: var(--green); font-size: 13px; font-weight: 900; text-transform: uppercase; }
h1 { max-width: 760px; margin: 12px 0 18px; font-size: clamp(44px, 7vw, 86px); line-height: .95; letter-spacing: 0; }
.hero p { max-width: 620px; margin: 0; color: #405049; font-size: clamp(18px, 2.1vw, 23px); line-height: 1.45; }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.band { padding: 74px 22px; }
.band.alt { background: #fff; border-block: 1px solid var(--line); }
.wrap { max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: 30px; }
h2 { margin: 0 0 10px; font-size: clamp(31px, 4vw, 52px); line-height: 1.04; }
h3 { margin: 0 0 8px; font-size: 19px; }
p { color: var(--muted); line-height: 1.62; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}
.product-card { display: grid; gap: 16px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { border: 1px solid #cddbd4; border-radius: 999px; padding: 6px 10px; color: var(--green); background: #f7fbf8; font-size: 12px; font-weight: 850; }
.alphabet-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.letter-tile {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 14px;
  display: grid;
  align-content: space-between;
  text-decoration: none;
}
.letter-tile span { width: 38px; height: 38px; border-radius: 8px; display: grid; place-items: center; background: #edf4ef; color: var(--green); font-weight: 950; }
.letter-tile strong { display: block; margin-top: 14px; font-size: 14px; }
.letter-tile small { color: var(--muted); font-weight: 750; }
.letter-tile.active { border-color: #abcdbf; box-shadow: inset 0 0 0 1px #abcdbf; }
.letter-tile.active span { background: var(--green); color: #fff; }
.letter-tile.parent span { background: linear-gradient(135deg, var(--green), var(--brass)); }
.letter-tile.questline span { background: var(--green); }
.letter-tile.reserved { background: #f8faf8; }
.letter-tile.reserved span { color: #7a8881; background: #eef2ef; }
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 36px; align-items: start; }
.proof-list { display: grid; gap: 12px; }
.proof { border-left: 3px solid var(--green); padding-left: 14px; }
.contact-panel { display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); padding-top: 28px; }
.footer { padding: 34px 22px; color: var(--muted); }
.footer .wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px; }
.footer a { color: var(--muted); text-decoration: none; margin-right: 14px; }
.legal main { max-width: 880px; margin: 0 auto; padding: 64px 22px; }
.legal h1 { font-size: clamp(38px, 5vw, 58px); line-height: 1; margin-bottom: 14px; }
.legal h2 { font-size: 25px; margin-top: 34px; }
.legal li { margin: 8px 0; color: var(--muted); line-height: 1.55; }

@media (max-width: 820px) {
  .links { gap: 11px; font-size: 13px; }
  .links .hide-sm { display: none; }
  .hero { min-height: min(660px, calc(100vh - 96px)); }
  .hero::before { background: linear-gradient(180deg, rgba(251,252,250,.96) 0%, rgba(251,252,250,.88) 54%, rgba(251,252,250,.42) 100%); }
  .hero-inner { padding-top: 64px; }
  .grid, .split { grid-template-columns: 1fr; }
  .alphabet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .letter-tile { min-height: 118px; }
  .contact-panel { align-items: start; flex-direction: column; }
}
