*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a0f05;
  --navy-deep: #0d0702;
  --navy-light: #2d1a0c;
  --red: #c4900a;
  --red-deep: #a07008;
  --red-light: #e63946;
  --gold: #f5c030;
  --white: #ffffff;
  --off-white: #fff8f0;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --border: #e5e7eb;
  --text: #111827;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
header.site {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header.site::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(255,255,255,0.06) 1px, transparent 2px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.06) 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 1px, transparent 2px);
  background-size: 80px 80px, 100px 100px, 120px 120px;
  pointer-events: none;
}

header.site a.logo {
  display: inline-block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

header.site .brand-logo {
  height: 46px;
  width: auto;
  max-width: 90vw;
  vertical-align: middle;
}

header.site .tagline {
  color: #c5d2ed;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  header.site .brand-logo { height: 38px; }
  header.site .tagline { font-size: 12px; }
}

/* ── HERO BAR (decorative gradient strip beneath header) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy), var(--navy-light));
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,16,46,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
}

.page-hero .updated {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

/* ── MAIN CONTENT ── */
main {
  max-width: 820px;
  margin: -32px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.content-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 25px 50px -12px rgba(10,31,77,0.18), 0 0 0 1px rgba(10,31,77,0.04);
  position: relative;
  overflow: hidden;
}

main h2 {
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  margin: 30px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--off-white);
  position: relative;
}

main h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50px;
  height: 2px;
  background: var(--red);
}

main h2:first-of-type { margin-top: 8px; }

main p {
  margin-bottom: 14px;
  color: #374151;
  font-size: 15px;
}

main p strong { color: var(--navy); font-weight: 700; }

main a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}

main a:hover { color: var(--red-deep); }

main ul {
  margin: 0 0 16px 4px;
  list-style: none;
}

main ul li {
  margin-bottom: 8px;
  font-size: 15px;
  padding-left: 26px;
  position: relative;
  color: #374151;
}

main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7l3 3 5-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

main .intro {
  background: linear-gradient(135deg, var(--off-white), #eef2ff);
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 28px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}

/* ── FOOTER ── */
footer.site {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 36px 20px 26px;
  text-align: center;
  position: relative;
}

footer.site .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-bottom: 18px;
}

footer.site .links a {
  color: var(--gold);
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}

footer.site .links a:hover {
  color: var(--white);
  text-decoration: underline;
}

footer.site .links span { color: #4a5e8a; font-size: 12px; }

footer.site .copyright {
  color: #6b7e9e;
  font-size: 11px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ─────────────── CONTACT PAGE EXTRAS ─────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  margin-top: 8px;
}

.contact-info {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(200,16,46,0.35) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info > * { position: relative; z-index: 1; }

.contact-info h3 {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 800;
}

.contact-info p {
  margin-bottom: 18px;
  font-size: 14px;
  color: #c5d2ed;
  font-weight: 500;
}

.contact-info a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

.contact-form .field { margin-bottom: 16px; }

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a1f4d' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(10,31,77,0.1);
  transform: translateY(-1px);
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px -5px rgba(200,16,46,0.5);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(200,16,46,0.6);
}

.contact-form button:hover::before { left: 100%; }

.contact-form .note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 22px; }
  .content-card { padding: 26px 22px; }
  main { padding: 0 16px; margin-top: -24px; }
  main h2 { font-size: 14px; }
  .page-hero { padding: 32px 18px; }
}
