:root {
  --ink: #071521;
  --ink-2: #0d2638;
  --cream: #f4efe6;
  --paper: #fffaf1;
  --muted: #6e6a62;
  --line: #ddd3c4;
  --gold: #c99a3b;
  --gold-2: #e0b85d;
  --teal: #4ea7a2;
  --danger: #9b4b37;
  --shadow: 0 24px 80px rgba(7, 21, 33, .16);
  --radius: 8px;
}

* {
  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(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 239, 230, .94);
  border-bottom: 1px solid rgba(221, 211, 196, .8);
  backdrop-filter: blur(16px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand img {
  width: 52px;
  height: 52px;
}

.brand-kicker {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}

.brand-name {
  display: block;
  margin-top: 1px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 700;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: .84rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 10px 12px;
  color: rgba(7, 21, 33, .74);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(201, 154, 59, .17);
}

.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: "▾";
  margin-left: 6px;
  color: var(--gold);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  background:
    radial-gradient(circle at 80% 12%, rgba(78, 167, 162, .18), transparent 30%),
    linear-gradient(120deg, var(--ink), #0b2233 65%, #173847);
  color: var(--cream);
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: 56px 0 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr);
  align-items: center;
  gap: 56px;
}

.hero-grid > *,
.content-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(201, 154, 59, .42);
  border-radius: var(--radius);
  color: var(--gold-2);
  background: rgba(244, 239, 230, .06);
  font-size: .82rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 700;
}

.lead {
  max-width: 710px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  color: rgba(244, 239, 230, .9);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: .01em;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(201, 154, 59, .22);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(244, 239, 230, .22);
  background: rgba(244, 239, 230, .06);
}

.hero-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(244, 239, 230, .16);
  border-radius: var(--radius);
  background: rgba(244, 239, 230, .08);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(244, 239, 230, .18);
}

.quick-panel a {
  padding: 18px;
  background: rgba(7, 21, 33, .86);
}

.quick-panel strong {
  display: block;
  color: var(--gold-2);
  font-size: .88rem;
}

.quick-panel span {
  display: block;
  margin-top: 3px;
  color: rgba(244, 239, 230, .8);
  font-size: .82rem;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.page-title h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.page-title p {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.notice,
.contact-card,
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(7, 21, 33, .06);
}

.card {
  padding: 22px;
}

.card h3 {
  font-size: 1.08rem;
}

.card p {
  margin: 10px 0 18px;
  color: var(--muted);
}

.text-link {
  color: var(--ink);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.notice-stack {
  display: grid;
  gap: 16px;
}

.date-badge {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.date-badge small {
  display: block;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.notice h3 {
  font-size: 1rem;
}

.notice p {
  margin: 3px 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 68px 0;
  color: var(--cream);
  background: linear-gradient(120deg, var(--ink), var(--ink-2));
}

.page-title {
  max-width: 850px;
}

.page-title p {
  color: rgba(244, 239, 230, .82);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
}

.content-panel + .content-panel {
  margin-top: 18px;
}

.content-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
}

.sidebar {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 20px;
}

.contact-card strong,
.meta-label {
  display: block;
  color: var(--gold);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 5px 0 0;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  color: rgba(244, 239, 230, .78);
  background: var(--ink);
  padding: 46px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .6fr);
  gap: 26px;
}

.footer-inner h2,
.footer-inner h3 {
  color: var(--cream);
}

.footer-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.footer-inner h3 {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-inner a {
  display: block;
  margin-top: 8px;
  color: rgba(244, 239, 230, .78);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    margin: 0 0 8px 10px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .content-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    display: block;
  }

  .hero-card {
    width: 100%;
    margin-top: 42px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 660px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    min-width: 0;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    padding: 44px 0 50px;
  }

  .hero-grid,
  .hero-grid > div,
  .hero-card {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .lead {
    width: min(100%, 31ch);
    max-width: 31ch;
  }

  h1 {
    font-size: 3rem;
  }

  .quick-panel,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .notice {
    grid-template-columns: 1fr;
  }

  .notice .button {
    width: 100%;
  }
}
