:root {
  --navy: #0b2942;
  --navy-deep: #061a2c;
  --navy-soft: #153b5b;
  --gold: #c99728;
  --gold-light: #e4bd5e;
  --cream: #f8f5ed;
  --mist: #eeebe2;
  --white: #ffffff;
  --ink: #1f3140;
  --muted: #5d6b76;
  --line: #d8d4c8;
  --success-bg: #edf5f0;
  --success-ink: #1c5a49;
  --shadow: 0 16px 42px rgba(7, 31, 50, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a { color: inherit; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--gold-light); }
.section { padding: 82px 0; }
.section--white { background: var(--white); }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: var(--white); }
.section-heading { max-width: 760px; }
.section-heading h1,
.section-heading h2,
.page-hero h1,
.hero h1,
.card h2,
.contact-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.22;
}
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
.section-heading p:not(.eyebrow) { max-width: 700px; color: var(--muted); font-size: 1.1rem; margin: 18px 0 0; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy .section-heading p:not(.eyebrow) { color: #d6e0e7; }

.utility {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #e8eef1;
  font-size: .91rem;
}
.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}
.utility__notice { color: #f7e9be; font-weight: 600; }
.utility__contacts { display: flex; gap: 18px; }
.utility a { color: #fff; text-decoration: none; }
.utility a:hover, .utility a:focus { color: var(--gold-light); }

.site-header { background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.header-main {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--navy); text-decoration: none; }
.brand__logo { width: 70px; height: 70px; object-fit: contain; }
.brand__name { display: block; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.12rem; font-weight: 700; letter-spacing: -.02em; }
.brand__tag { display: block; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .11em; margin-top: 3px; text-transform: uppercase; }
.nav-toggle { display: none; padding: 9px 12px; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 2px; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 3px; }
.site-nav a {
  position: relative;
  display: block;
  padding: 11px 10px;
  color: var(--ink);
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: 4px; height: 2px; background: transparent; }
.site-nav a:hover, .site-nav a:focus, .site-nav a[aria-current="page"] { color: var(--navy); }
.site-nav a:hover::after, .site-nav a:focus::after, .site-nav a[aria-current="page"]::after { background: var(--gold); }

.hero { position: relative; overflow: hidden; background: linear-gradient(122deg, var(--navy-deep), var(--navy) 56%, #1b4867); color: var(--white); }
.hero::before { content: ""; position: absolute; width: 570px; height: 570px; top: -300px; right: -180px; border: 1px solid rgba(228,189,94,.34); border-radius: 50%; box-shadow: 0 0 0 54px rgba(228,189,94,.08), 0 0 0 108px rgba(228,189,94,.05); }
.hero__inner { position: relative; z-index: 1; min-height: 530px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(255px, .75fr); align-items: center; gap: clamp(38px, 7vw, 95px); padding: 72px 0; }
.hero h1 { max-width: 760px; color: var(--white); font-size: clamp(2.5rem, 6vw, 5.05rem); }
.hero__copy { max-width: 660px; color: #dae5eb; font-size: clamp(1.06rem, 2vw, 1.24rem); margin: 24px 0 31px; }
.hero__seal { max-width: 345px; justify-self: end; padding: 25px; background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(248,245,237,.94)); border: 1px solid rgba(228,189,94,.9); box-shadow: var(--shadow); }
.hero__seal img { display: block; width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 47px; padding: 10px 20px; border: 1px solid transparent; border-radius: 2px; font-weight: 700; text-decoration: none; transition: background .18s ease, transform .18s ease; }
.button:hover, .button:focus { transform: translateY(-1px); }
.button--gold { color: #192b38; background: var(--gold-light); }
.button--gold:hover, .button--gold:focus { background: #f0cd76; }
.button--outline { border-color: rgba(255,255,255,.66); color: var(--white); }
.button--outline:hover, .button--outline:focus { background: rgba(255,255,255,.11); }
.button--navy { color: var(--white); background: var(--navy); }
.button--navy:hover, .button--navy:focus { background: var(--navy-soft); }

.classic-rule { width: 68px; height: 4px; margin: 22px 0 0; background: var(--gold); }
.classic-rule--center { margin-right: auto; margin-left: auto; }
.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.card { background: var(--white); border: 1px solid var(--line); padding: 29px 26px; box-shadow: 0 8px 24px rgba(13,41,66,.05); }
.card__number { display: block; color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .13em; }
.card h2 { font-family: "Source Sans 3", Arial, sans-serif; font-size: 1.34rem; letter-spacing: 0; margin: 15px 0 10px; }
.card p { margin: 0; color: var(--muted); }
.statement-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(40px, 8vw, 105px); }
.statement { padding: 38px; color: var(--navy); background: linear-gradient(135deg, #fffdf7, #eee8d8); border-left: 5px solid var(--gold); }
.statement p { margin: 0; font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(1.28rem, 2.3vw, 1.64rem); line-height: 1.53; }
.checklist { list-style: none; margin: 25px 0 0; padding: 0; }
.checklist li { position: relative; padding: 14px 0 14px 31px; color: var(--muted); border-bottom: 1px solid var(--line); }
.checklist li::before { content: "◆"; position: absolute; left: 0; top: 14px; color: var(--gold); font-size: .72rem; }

.status-banner { margin-top: 36px; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding: 24px; background: var(--success-bg); border-left: 5px solid #5a8d75; color: var(--success-ink); }
.status-banner strong { display: inline-block; padding-top: 2px; font-size: .84rem; letter-spacing: .10em; text-transform: uppercase; }
.status-banner p { margin: 0; }
.status-banner--navy { background: rgba(255,255,255,.1); border-color: var(--gold); color: #e6edf2; }
.status-banner--navy strong { color: var(--gold-light); }

.page-hero { padding: 75px 0 69px; color: var(--white); background: linear-gradient(125deg, var(--navy-deep), var(--navy)); }
.page-hero__inner { max-width: 850px; }
.page-hero h1 { color: var(--white); font-size: clamp(2.45rem, 5.5vw, 4.3rem); }
.page-hero p:not(.eyebrow) { max-width: 720px; color: #d7e2e8; font-size: 1.15rem; margin: 19px 0 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 38px; }
.content-card { padding: 31px; background: var(--white); border: 1px solid var(--line); }
.content-card h2 { margin: 0 0 12px; color: var(--navy); font-family: "Libre Baskerville", Georgia, serif; font-size: 1.45rem; line-height: 1.35; }
.content-card p { margin: 0; color: var(--muted); }
.content-card ul { margin: 15px 0 0; padding-left: 21px; color: var(--muted); }
.content-card li + li { margin-top: 7px; }
.numbered-list { list-style: none; counter-reset: steps; margin: 40px 0 0; padding: 0; }
.numbered-list li { position: relative; min-height: 76px; padding: 5px 0 25px 86px; color: var(--muted); }
.numbered-list li::before { counter-increment: steps; content: "0" counter(steps); position: absolute; left: 0; top: 0; display: grid; width: 56px; height: 56px; place-items: center; color: var(--navy); border: 1px solid var(--gold); background: #fffdf7; font-family: "Libre Baskerville", Georgia, serif; font-size: 1.1rem; }
.numbered-list strong { display: block; color: var(--navy); font-size: 1.1rem; margin-bottom: 3px; }

.faq-list { margin-top: 38px; border-top: 1px solid var(--line); }
.faq-list details { background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 21px 56px 21px 24px; color: var(--navy); cursor: pointer; font-size: 1.11rem; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 23px; top: 15px; color: var(--gold); font-size: 1.7rem; font-weight: 400; }
.faq-list details[open] summary { border-bottom: 1px solid var(--line); }
.faq-list details[open] summary::after { content: "–"; }
.faq-answer { max-width: 900px; padding: 0 24px 22px; color: var(--muted); }
.faq-answer p { margin: 0; }

.contact-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; padding: clamp(30px, 5vw, 56px); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-panel h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
.contact-panel p { color: var(--muted); }
.contact-list { display: grid; align-content: center; gap: 12px; }
.contact-item { padding: 17px 19px; background: #f5f1e7; border-left: 3px solid var(--gold); }
.contact-item small { display: block; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.contact-item a, .contact-item strong { display: block; color: var(--navy); font-size: 1.05rem; font-weight: 700; text-decoration: none; }
.contact-item a:hover, .contact-item a:focus { color: var(--navy-soft); text-decoration: underline; }
.privacy-note { margin-top: 28px; padding: 18px 20px; background: #fdf7e8; border-left: 4px solid var(--gold); color: #5d4b23; font-size: .95rem; }
.privacy-note strong { color: var(--navy); }

.site-footer { padding: 46px 0 28px; color: #d6e0e7; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 35px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 64px; height: 64px; object-fit: contain; background: #f8f5ed; }
.footer-brand strong { display: block; color: var(--white); font-family: "Libre Baskerville", Georgia, serif; font-size: 1rem; }
.footer-brand span { display: block; color: #afc2d0; font-size: .83rem; margin-top: 2px; }
.site-footer h2 { margin: 6px 0 12px; color: var(--gold-light); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.site-footer p, .site-footer li { color: #cbd8df; font-size: .91rem; }
.site-footer p { margin: 0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: 5px; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover, .site-footer a:focus { color: var(--gold-light); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 35px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.16); color: #aebfca; font-size: .83rem; }

@media (max-width: 1050px) {
  .header-main { gap: 13px; }
  .site-nav a { padding-right: 7px; padding-left: 7px; font-size: .86rem; }
}
@media (max-width: 850px) {
  .utility__contacts { display: none; }
  .utility__inner { justify-content: center; text-align: center; }
  .header-main { position: relative; min-height: 81px; }
  .brand__logo { width: 59px; height: 59px; }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; padding: 9px 20px 17px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 12px 22px rgba(13,41,66,.10); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 10px 0; }
  .site-nav a::after { right: auto; left: 0; width: 43px; bottom: 5px; }
  .hero__inner { min-height: 0; grid-template-columns: 1fr; padding: 61px 0; }
  .hero__seal { justify-self: start; max-width: 220px; padding: 17px; }
  .three-grid { grid-template-columns: 1fr; }
  .statement-grid, .contact-panel, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(100% - 30px, 1180px); }
  .section { padding: 62px 0; }
  .brand { gap: 9px; }
  .brand__name { font-size: .97rem; }
  .brand__tag { font-size: .62rem; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.65rem); }
  .hero__copy { font-size: 1.04rem; }
  .two-col { grid-template-columns: 1fr; }
  .page-hero { padding: 58px 0; }
  .statement { padding: 28px; }
  .status-banner { grid-template-columns: 1fr; gap: 4px; }
  .content-card { padding: 25px; }
  .numbered-list li { padding-left: 71px; }
  .numbered-list li::before { width: 48px; height: 48px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
