/* VURLE - stylesheet */

:root {
  --navy: #10233d;
  --navy-dark: #0a1626;
  --gold: #8a6d3b;
  --gold-light: #b08d4f;
  --cream: #f7f4ee;
  --paper: #fdfcf9;
  --ink: #1c1c1c;
  --line: #d8d2c4;
  --muted: #5a5a52;
  --serif: Georgia, "Times New Roman", Times, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--serif);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}

a {
  color: var(--navy);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

img { max-width: 100%; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #cfcfc7;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #cfcfc7; }
.topbar a:hover { color: #fff; }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--navy);
  border-bottom: 4px solid var(--gold);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand .logo-mark {
  flex-shrink: 0;
  display: block;
}
.brand-text h1 {
  margin: 0;
  color: #f5f2ea;
  font-size: 28px;
  letter-spacing: 0.08em;
  font-weight: normal;
  font-family: var(--serif);
}
.brand-text h1 .u-link {
  color: var(--gold-light);
}
.brand-text .full-name {
  margin: 3px 0 0;
  color: #a9b4c4;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.brand-text .tagline {
  margin: 2px 0 0;
  color: #a9b4c4;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav.main-nav a {
  color: #e8e4d8;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: #fff;
  border-bottom-color: var(--gold-light);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #55627a;
  color: #e8e4d8;
  font-size: 14px;
  padding: 8px 12px;
  cursor: pointer;
  font-family: var(--serif);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(var(--navy-dark), var(--navy));
  color: #eee9dc;
  padding: 64px 0 60px;
  text-align: center;
  border-bottom: 1px solid #2a3a54;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.hero h2 {
  font-size: 38px;
  margin: 0 0 20px;
  font-weight: normal;
  line-height: 1.3;
  font-family: var(--serif);
}
.hero p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: #cfd3dc;
  font-size: 17px;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--gold-light);
  color: #f5f2ea;
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  text-decoration: none;
}
.btn.solid {
  background: var(--gold-light);
  color: var(--navy-dark);
}
.btn.solid:hover {
  background: var(--gold);
}

/* ---------- Sections ---------- */
main { background: var(--paper); }

section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
section:last-of-type { border-bottom: none; }

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

.section-title {
  font-size: 28px;
  font-weight: normal;
  color: var(--navy);
  margin: 0 0 8px;
  font-family: var(--serif);
}
.section-sub {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.rule {
  width: 60px;
  height: 3px;
  background: var(--gold-light);
  margin: 0 0 24px;
}

.lede {
  font-size: 18px;
  color: #2b2b2b;
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.grid.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 26px 28px;
}
.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  font-weight: normal;
}
.card p { margin: 0; color: #3c3c3c; font-size: 15.5px; }

ul.plain {
  margin: 0;
  padding: 0 0 0 20px;
}
ul.plain li {
  margin-bottom: 8px;
  font-size: 15.5px;
}

ul.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 40px;
}
ul.checklist li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 15.5px;
  break-inside: avoid;
}
ul.checklist li::before {
  content: "\2022";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1.1;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pillar {
  text-align: center;
  padding: 10px 14px;
}
.pillar .num {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
}
.pillar h3 {
  color: var(--navy);
  font-weight: normal;
  margin: 0 0 8px;
}
.pillar p { color: var(--muted); font-size: 15px; margin: 0; }

.process-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-list li {
  counter-increment: step;
  position: relative;
  padding: 0 0 26px 56px;
  border-left: 1px solid var(--line);
  margin-left: 22px;
}
.process-list li:last-child { border-left: none; padding-bottom: 0; }
.process-list li::before {
  content: counter(step);
  position: absolute;
  left: -22px;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #f2ead8;
  text-align: center;
  line-height: 42px;
  font-size: 15px;
}
.process-list h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-weight: normal;
  font-size: 17px;
}
.process-list p { margin: 0; color: #444; font-size: 15px; max-width: 640px; }

blockquote.callout {
  border-left: 4px solid var(--gold-light);
  background: var(--cream);
  padding: 20px 26px;
  margin: 0;
  font-style: italic;
  color: #333;
}

.stat-strip {
  background: var(--navy);
  color: #ece7d9;
  padding: 34px 0;
  text-align: center;
}
.stat-strip .container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-strip .stat-num {
  font-size: 34px;
  color: var(--gold-light);
  display: block;
}
.stat-strip .stat-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b8bfcc;
}

.cta-band {
  background: var(--cream);
  text-align: center;
  padding: 60px 0;
}
.cta-band h2 { color: var(--navy); font-weight: normal; margin: 0 0 12px; }
.cta-band p { color: var(--muted); margin: 0 0 24px; }

/* ---------- Legal document pages ---------- */
.legal-doc h2 {
  color: var(--navy);
  font-weight: normal;
  font-size: 24px;
  margin-top: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc h3 {
  color: var(--navy);
  font-weight: normal;
  font-size: 18px;
  margin-top: 26px;
}
.legal-doc p, .legal-doc li { font-size: 15.5px; color: #333; }
.legal-doc ul { padding-left: 22px; }
.legal-doc .updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 30px;
  font-style: italic;
}

.page-hero {
  background: var(--navy);
  color: #eee9dc;
  padding: 40px 0;
  text-align: center;
  border-bottom: 4px solid var(--gold-light);
}
.page-hero h1 { font-weight: normal; margin: 0; font-size: 30px; }
.breadcrumb {
  font-size: 13px;
  color: #a9b4c4;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: #cfd3dc; }

/* ---------- Contact form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 44px;
}
.contact-info h3 {
  color: var(--navy);
  font-weight: normal;
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 17px;
}
.contact-info p { font-size: 15px; color: #333; margin: 0 0 4px; }
.contact-info ul.plain { margin-top: 8px; }

form.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 30px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #bdb6a4;
  background: #fff;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form-row.checkbox input { width: auto; margin-top: 4px; }
.form-row.checkbox label {
  text-transform: none;
  letter-spacing: normal;
  font-size: 14px;
  color: #333;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.form-success {
  display: none;
  background: #e9f0e4;
  border: 1px solid #a9c79a;
  color: #2c4a20;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 15px;
}
.form-error {
  color: #7a1f1f;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-dark);
  color: #b9bfca;
  padding: 46px 0 20px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-grid h4 {
  color: #e8e4d8;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  margin: 0 0 14px;
}
.footer-grid p { margin: 0 0 10px; color: #9ba3b2; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a { color: #b9bfca; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #263447;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #7d8494;
}
.footer-disclaimer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 18px;
  font-size: 12px;
  color: #6f7686;
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid, .grid.three, .pillars, .footer-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  ul.checklist { columns: 1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  nav.main-nav {
    display: none;
    width: 100%;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    gap: 4px;
    padding-top: 10px;
  }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .hero h2 { font-size: 28px; }
}
