@charset "utf-8";
/* CSS Document */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #081739;
      --dark:       #181818;
      --gold:       #b8972a;
      --gold-light: #d4af55;
      --cream:      #f5f0e8;
      --warm:       #e8dfc9;
      --muted:      #6b7a8d;
      --border:     #c9b87a;
      --text:       #1a2535;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--cream);
      color: var(--text);
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      line-height: 1.8;
      min-height: 100vh;
    }
  body,td,th {
	font-family: Lato, sans-serif;
}
a:link {
	color: #b8972a;
}
a:visited {
	color: #b8972a;
}
a:hover {
	color: #86702A;
}
a:active {
	color: #b8972a;
}
    /* ── Header ── */
    header {
      background: var(--navy);
      color: var(--cream);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 2px solid var(--gold);
    }

    .header-inner {
      max-width: 1100px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 32px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-seal {
      width: 40px; height: 40px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }

    .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      letter-spacing: 0.04em;
      font-weight: 600;
    }

    .header-date {
      font-size: 0.75rem;
      color: var(--gold-light);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* ── Hero ── */
    .hero {
      background: var(--dark);
      color: var(--cream);
      text-align: center;
      padding: 72px 24px 64px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(184,151,42,.06) 48px, rgba(184,151,42,.06) 49px),
        repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(184,151,42,.06) 48px, rgba(184,151,42,.06) 49px);
    }

    .hero-label {
      display: inline-block;
      border: 1px solid var(--gold);
      color: var(--gold-light);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 6px 18px;
      margin-bottom: 24px;
      position: relative;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.15;
      position: relative;
      max-width: 700px;
      margin: 0 auto 20px;
    }

    .hero-sub {
      color: rgba(245,240,232,.6);
      font-size: 0.9rem;
      font-style: italic;
      position: relative;
    }

    /* ── Layout ── */
    .layout {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 24px;
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 60px;
      align-items: start;
    }

    @media(max-width: 860px){
      .layout { grid-template-columns: 1fr; gap: 32px; }
      .toc { position: static !important; }
    }

    /* ── TOC ── */
    .toc {
      position: sticky;
      top: 80px;
      background: var(--navy);
      color: var(--cream);
      border-radius: 4px;
      padding: 28px 24px;
      border-left: 3px solid var(--gold);
    }

    .toc-title {
      font-family: 'Playfair Display', serif;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(184,151,42,.3);
    }

    .toc ol { padding-left: 18px; }

    .toc li {
      margin-bottom: 10px;
      font-size: 0.82rem;
      line-height: 1.4;
    }

    .toc a {
      color: rgba(245,240,232,.75);
      text-decoration: none;
      transition: color .2s;
    }

    .toc a:hover { color: var(--gold-light); }

    .toc-divider {
      height: 1px;
      background: rgba(184,151,42,.3);
      margin: 4px 0;
    }

    .toc-docs {
      list-style: none;
      padding-left: 0;
    }

    .toc-docs li {
      margin-bottom: 8px;
      font-size: 0.8rem;
      padding-left: 12px;
      border-left: 2px solid transparent;
      transition: border-color .2s;
    }

    .toc-docs li:hover { border-left-color: var(--gold); }

    /* ── Content ── */
    .content section {
      margin-bottom: 52px;
      animation: fadeIn .5s ease both;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

.section-number {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

    .content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }

    .content p {
      margin-bottom: 14px;
      color: #2c3a4d;
      font-weight: 300;
    }

    .content ul, .content ol {
      padding-left: 22px;
      margin-bottom: 14px;
      color: #2c3a4d;
      font-weight: 300;
    }

    .content li { margin-bottom: 8px; }

    /* ── Notice box ── */
    .notice {
      background: var(--navy);
      color: var(--cream);
      border-left: 4px solid var(--gold);
      border-radius: 3px;
      padding: 20px 24px;
      margin: 20px 0;
      font-size: 0.9rem;
    }

    .notice strong {
      color: var(--gold-light);
      display: block;
      margin-bottom: 6px;
      font-family: 'Playfair Display', serif;
      letter-spacing: 0.04em;
    }

    /* ── Warning box ── */
    .warning {
      background: #fdf6e3;
      border: 1px solid var(--gold);
      border-left: 4px solid #b8622a;
      border-radius: 3px;
      padding: 20px 24px;
      margin: 20px 0;
      font-size: 0.9rem;
      color: #4a3510;
    }

    .warning strong {
      color: #8b3a0f;
      display: block;
      margin-bottom: 6px;
      font-family: 'Playfair Display', serif;
    }

    /* ── Highlight ── */
    .highlight {
      background: linear-gradient(to right, rgba(184,151,42,.15), transparent);
      border-left: 3px solid var(--gold);
      padding: 14px 18px;
      margin: 16px 0;
      font-style: italic;
      color: #1a2535;
    }

    /* ── Footer ── */
    footer {
      background: var(--dark);
      color: rgba(245,240,232,.5);
      text-align: center;
      padding: 40px 24px;
      border-top: 2px solid var(--gold);
      font-size: 0.8rem;
      letter-spacing: 0.04em;
    }

    footer .footer-inner { max-width: 1100px; margin: auto; }

    footer .footer-brand {
      font-family: 'Playfair Display', serif;
      color: var(--gold-light);
      font-size: 1rem;
      margin-bottom: 10px;
    }

    footer .footer-links {
      display: flex;
      justify-content: center;
      gap: 28px;
      margin: 18px 0;
      flex-wrap: wrap;
    }

    footer a {
      color: rgba(245,240,232,.6);
      text-decoration: none;
      font-size: 0.75rem;
      transition: color .2s;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    footer a:hover { color: var(--gold-light); }

    .back-top {
      display: inline-block;
      margin-top: 20px;
      border: 1px solid rgba(184,151,42,.4);
      color: var(--gold-light);
      padding: 8px 22px;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, color .2s;
    }

    .back-top:hover { background: var(--gold); color: var(--dark); }

    @media(max-width: 600px){
      .header-inner { flex-direction: column; gap: 10px; text-align: center; }
      .hero { padding: 52px 16px 48px; }
    }