:root {
  --ink: #16201f;
  --muted: #566462;
  --paper: #f8f5ee;
  --panel: #ffffff;
  --line: #ded7ca;
  --deep: #10221f;
  --deep-2: #18352f;
  --gold: #c29b53;
  --gold-dark: #8a6a31;
  --shadow: 0 24px 80px rgba(12, 24, 22, 0.14);
  --radius: 24px;
}
* { 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);
  line-height: 1.6;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--deep);
  color: #fff;
  z-index: 20;
}
.skip-link:focus { left: 12px; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 40px)); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 215, 202, 0.8);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 760; letter-spacing: -0.02em; }
nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
nav a { text-decoration: none; color: var(--muted); font-weight: 650; padding: 10px 12px; border-radius: 999px; }
nav a:hover, nav a[aria-current="page"] { background: rgba(194, 155, 83, 0.16); color: var(--ink); }
.section { padding: 88px 0; }
.hero { background: radial-gradient(circle at top right, rgba(194, 155, 83, 0.20), transparent 34%), linear-gradient(180deg, #fffaf0 0%, var(--paper) 100%); }
.hero.compact { padding: 72px 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: 44px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 800; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.045em; margin: 0 0 18px; }
h1 { font-size: clamp(2.5rem, 7vw, 5.75rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.28rem; letter-spacing: -0.025em; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.1rem, 2vw, 1.42rem); color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.button.primary { background: var(--deep); color: #fff8e7; }
.button.secondary { border-color: var(--line); color: var(--deep); background: rgba(255, 255, 255, 0.56); }
.button.light { background: #fff8e7; color: var(--deep); margin-top: 8px; }
.status-card, .panel, .card, .notice {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.status-card { transform: rotate(1deg); }
.check-list, .plain-list { padding: 0; list-style: none; margin: 0; }
.check-list li, .plain-list li { position: relative; padding-left: 28px; margin: 12px 0; }
.check-list li::before, .plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}
.section-muted { background: #ede7da; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.align-start { align-items: start; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { box-shadow: none; min-height: 260px; }
.card h2 { font-size: 2rem; }
.section-dark { background: var(--deep); color: #fff8e7; }
.section-dark p { color: rgba(255, 248, 231, 0.78); }
.notice { margin-top: 24px; background: #fffaf0; box-shadow: none; }
.email-link { font-size: 1.2rem; font-weight: 800; color: var(--deep); }
.site-footer { padding: 30px 0; background: #0b1715; color: rgba(255, 248, 231, 0.78); }
.footer-grid { display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: space-between; align-items: center; }
.site-footer p { margin: 0; }
.site-footer a { color: #fff8e7; }
@media (max-width: 860px) {
  .nav-wrap, .footer-grid { align-items: flex-start; }
  .hero-grid, .two-column, .cards { grid-template-columns: 1fr; }
  .status-card { transform: none; }
  .section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .container, .narrow { width: min(100% - 28px, 1120px); }
  .nav-wrap { min-height: auto; padding: 14px 0; flex-direction: column; }
  nav { justify-content: flex-start; width: 100%; }
  h1 { font-size: 2.55rem; }
}

.logo-brand { gap: 12px; }
.official-logo { width: 52px; height: 52px; object-fit: contain; display: block; flex: 0 0 auto; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 0.94; letter-spacing: -0.04em; }
.brand-name { font-size: 1.28rem; font-weight: 850; }
.brand-suffix { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.14em; color: var(--gold-dark); margin-top: 3px; }
.asset-panel { background: #fffaf0; }
.small-note { color: var(--muted); font-size: 0.98rem; border-left: 3px solid var(--gold); padding-left: 14px; }
.compact-list { margin-top: 22px; }
@media (max-width: 560px) { .official-logo { width: 46px; height: 46px; } .brand-name { font-size: 1.14rem; } }
