:root {
  --ink: #121214;
  --ink-soft: #303034;
  --muted: #6a696d;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: #e5e1d8;
  --gold: #c49d35;
  --gold-bright: #e6c94a;
  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo { display: block; width: 124px; height: auto; }
.brand-division {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.main-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.main-nav a:hover { color: var(--gold); }

.notice-section {
  min-height: calc(100vh - 190px);
  display: grid;
  place-items: center;
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at 82% 18%, rgba(230,201,74,.16), transparent 29%),
    linear-gradient(135deg, #ffffff 0%, #faf9f5 52%, #f3efe2 100%);
}
.notice-wrap { max-width: 820px; text-align: center; }
.notice-mark { width: 72px; height: auto; margin-bottom: 30px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .18em;
}
h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.notice-copy {
  max-width: 610px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.site-footer { padding: 30px 0; background: #0d0d0f; color: #aaa79f; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 48px; height: auto; }
.footer-brand > div { display: flex; flex-direction: column; }
.footer-brand strong { color: #f1eee7; font-size: 13px; }
.footer-brand span { font-size: 12px; }
.footer-link { color: #d5c78f; font-size: 13px; font-weight: 700; text-decoration: none; }
.footer-link:hover { color: var(--gold-bright); }

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 68px; }
  .brand-logo { width: 106px; }
  .brand-division { padding-left: 10px; font-size: 9px; }
  .main-nav a { font-size: 12px; }
  .notice-section { min-height: calc(100vh - 170px); padding: 72px 0 88px; }
  .notice-mark { width: 60px; }
  h1 { font-size: clamp(42px, 13vw, 60px); }
  .notice-copy { font-size: 16px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
