:root {
  --ink: #102033;
  --ink-soft: #2f4154;
  --muted: #66778a;
  --line: #dde5ed;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --gold: #c99437;
  --gold-dark: #a77922;
  --navy: #0c1b2a;
  --shadow: 0 24px 60px rgba(16, 32, 51, 0.12);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.section { padding: 88px 0; }
.muted { background: var(--bg-soft); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3.25rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}
h2 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}
h3 { font-size: 1.2rem; margin-bottom: 10px; }
.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 680px;
}
.credentials {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.small-note { color: var(--muted); font-size: 0.95rem; margin-top: 14px; }
.section-intro { color: var(--muted); max-width: 560px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 1000;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 229, 237, 0.75);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201, 148, 55, 0.45); background: white; }
.brand strong { display: block; font-size: 1.02rem; line-height: 1.1; }
.brand small { color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.95rem;
}
.site-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); border-radius: 99px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding-top: 86px;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(201, 148, 55, 0.18), transparent 36%),
    linear-gradient(135deg, #fbfcfe 0%, #ffffff 48%, #eef3f8 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(201, 148, 55, 0.14);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 48px;
  align-items: center;
}
.hero-actions, .contact-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn.primary { background: var(--gold); color: #101820; box-shadow: 0 14px 28px rgba(201, 148, 55, 0.22); }
.btn.primary:hover { background: #d7a64b; }
.btn.secondary { background: white; border-color: var(--line); color: var(--ink); }
.btn.secondary:hover { box-shadow: 0 10px 24px rgba(16, 32, 51, 0.08); }
.btn.large { min-height: 56px; padding-inline: 24px; }

.profile-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(221, 229, 237, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.profile-top { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.avatar {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), #233a52);
  color: var(--gold);
  font-weight: 900;
  font-size: 1.65rem;
  letter-spacing: -0.05em;
  object-fit: cover;
  border: 2px solid rgba(201, 148, 55, 0.35);
}
.card-kicker { margin: 0 0 4px; color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; }
.profile-card h2 { font-size: 1.4rem; letter-spacing: -0.02em; margin: 0; }
.quick-info { margin: 0; }
.quick-info div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.quick-info dt { font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; margin-bottom: 5px; }
.quick-info dd { margin: 0; font-weight: 720; word-break: break-word; }

.strip { background: var(--navy); color: white; padding: 22px 0; }
.strip-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.strip-grid span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  color: #e8eef5;
  font-weight: 700;
  font-size: 0.93rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
}
.prose p { color: var(--ink-soft); font-size: 1.08rem; }
.prose p:last-child { margin-bottom: 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p { color: var(--muted); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 230px;
}
.card-number {
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}
.card p { color: var(--muted); margin-bottom: 0; }

.forum-list {
  display: grid;
  gap: 12px;
}
.forum-list div {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.forum-list span { color: var(--muted); }

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  background: var(--navy);
  color: white;
  border-radius: 32px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.cta-panel h2 { color: white; }
.cta-panel p:not(.eyebrow) { color: #d8e1ea; max-width: 680px; margin-bottom: 0; }
.cta-panel .btn.secondary { background: transparent; border-color: rgba(255, 255, 255, 0.25); color: white; }
.cta-actions { justify-content: flex-end; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 46px;
}
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.08);
}
address { font-style: normal; color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 24px; }
address strong { color: var(--ink); font-size: 1.15rem; }
.contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list span { color: var(--muted); font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.09em; }
.contact-list a { font-weight: 750; word-break: break-word; }

.site-footer {
  padding: 30px 0;
  background: var(--navy);
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
}
.site-footer p { margin: 0; color: #bdc9d5; }
.site-footer a { color: #f1d08d; }

.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12, 27, 42, 0.78);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.notice-modal.is-open { display: flex; }
.notice-card {
  width: min(680px, 100%);
  background: white;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.notice-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff6e5;
  color: var(--gold-dark);
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.notice-card h2 { font-size: 2rem; }
.notice-card p { color: var(--ink-soft); }
.notice-actions { display: flex; justify-content: flex-end; margin-top: 24px; }

@media (max-width: 920px) {
  .section { padding: 68px 0; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px; }
  .hero-grid, .two-col, .contact-grid, .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { min-height: 70px; }
  .site-nav { top: 70px; left: 14px; right: 14px; }
  .hero { padding-top: 56px; }
  .hero-actions, .contact-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .cards { grid-template-columns: 1fr; }
  .forum-list div, .contact-list li { grid-template-columns: 1fr; gap: 5px; }
  .cta-panel, .contact-card, .profile-card, .notice-card { padding: 24px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media print {
  .site-header, .notice-modal, .hero-actions, .contact-actions, .cta-actions, .site-footer { display: none !important; }
  .section, .hero { padding: 20px 0; }
  body { color: black; background: white; }
  .card, .profile-card, .contact-card, .cta-panel { box-shadow: none; border: 1px solid #bbb; }
}
