:root {
  --bg: #0b0d0a;
  --ink: #f8f2e8;
  --muted: rgba(248, 242, 232, 0.74);
  --soft: rgba(248, 242, 232, 0.54);
  --line: rgba(248, 242, 232, 0.18);
  --panel: rgba(10, 12, 9, 0.52);
  --panel-strong: rgba(10, 12, 9, 0.72);
  --gold: #c9aa70;
  --green: #7e8d63;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
a { color: inherit; }
.home {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: url("kanto-kola-background.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}
.home::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 25% 30%, rgba(73, 102, 72, 0.18), transparent 32rem),
    linear-gradient(90deg, rgba(4, 5, 4, 0.92) 0%, rgba(4, 5, 4, 0.72) 42%, rgba(4, 5, 4, 0.52) 100%),
    linear-gradient(180deg, rgba(4, 5, 4, 0.34) 0%, rgba(4, 5, 4, 0.88) 100%);
}
.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
}
.site-header {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 26px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.header-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
.header-mark img { width: 42px; height: auto; display: block; opacity: .96; }
.header-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.header-links a,
.footer-links a,
.social-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.header-links a {
  border: 1px solid rgba(248,242,232,.15);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.header-links a:hover,
.footer-links a:hover,
.social-links a:hover { color: var(--ink); border-color: rgba(248,242,232,.36); }
.hero {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding: clamp(48px, 8vh, 88px) 0 34px;
}
.hero-copy {
  max-width: 650px;
}
.logo-main {
  width: min(430px, 86vw);
  height: auto;
  display: block;
  margin: 0 0 clamp(24px, 4vw, 38px);
  filter: drop-shadow(0 12px 38px rgba(0,0,0,.55));
}
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 16px;
}
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: .94;
  letter-spacing: -.055em;
  max-width: 780px;
}
.lead {
  margin: 24px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}
.lead strong { color: var(--ink); font-weight: 750; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(248,242,232,.18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(70, 60, 38, 0.56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 700;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid rgba(248,242,232,.22);
  background: rgba(248,242,232,.92);
  color: #12120e;
}
.button.secondary {
  background: rgba(0,0,0,.26);
  color: var(--ink);
  backdrop-filter: blur(12px);
}
.pilot-note {
  margin: 24px 0 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 800;
}
.visual-card {
  position: relative;
  justify-self: end;
  width: min(420px, 100%);
  border: 1px solid rgba(248, 242, 232, .2);
  border-radius: 28px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(248, 242, 232, .11), rgba(248, 242, 232, .045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(248,242,232,.08);
  border-radius: 20px;
  pointer-events: none;
}
.visual-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}
.visual-caption {
  margin: 13px 8px 4px;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .02em;
}
.site-footer {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 18px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--soft);
  font-size: 12px;
}
.footer-links,
.social-links { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.footer-right { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 18px; }
.legal-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(83, 102, 69, .22), transparent 30rem),
    linear-gradient(180deg, #10130f 0%, #070806 100%);
  color: var(--ink);
}
.legal-wrap {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 58px;
}
.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.legal-header a { color: var(--muted); text-decoration: none; }
.legal-logo { width: 130px; height: auto; display: block; }
.legal-card {
  margin-top: 32px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadow);
}
.legal-card h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 6vw, 58px);
  letter-spacing: -.045em;
  margin-bottom: 24px;
}
.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.legal-card ul { padding-left: 20px; }
.legal-card a { color: var(--ink); text-decoration-color: rgba(248,242,232,.35); text-underline-offset: 3px; }
.address-block { white-space: pre-line; }
@media (max-width: 900px) {
  .site-header {
    padding-top: 18px;
    width: min(100% - 32px, 760px);
    align-items: flex-start;
  }
  .header-mark span { display: none; }
  .header-links { gap: 6px; }
  .header-links a { font-size: 11px; padding: 7px 10px; }
  .hero {
    width: min(100% - 32px, 760px);
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
    padding: 42px 0 28px;
  }
  .logo-main { width: min(330px, 82vw); margin-bottom: 26px; }
  .lead { font-size: 17px; }
  .visual-card { justify-self: start; width: min(100%, 430px); }
  .site-footer {
    width: min(100% - 32px, 760px);
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px;
  }
  .footer-right { justify-content: flex-start; }
  .home::after {
    background:
      radial-gradient(circle at 45% 14%, rgba(82, 110, 72, 0.16), transparent 20rem),
      linear-gradient(180deg, rgba(4,5,4,.84) 0%, rgba(4,5,4,.76) 45%, rgba(4,5,4,.92) 100%);
  }
}
@media (max-width: 520px) {
  .header-links a:nth-child(1), .header-links a:nth-child(2), .header-links a:nth-child(3) { display: none; }
  .eyebrow { font-size: 11px; letter-spacing: .2em; }
  h1 { font-size: clamp(42px, 16vw, 68px); }
  .tag { min-height: 34px; font-size: 12px; padding: 8px 12px; }
  .button { width: 100%; }
  .pilot-note { letter-spacing: .18em; }
  .visual-caption { font-size: 11px; }
  .legal-wrap { width: min(100% - 28px, 880px); padding-top: 24px; }
  .legal-header { align-items: flex-start; flex-direction: column; }
  .legal-card { border-radius: 18px; }
}