:root {
  --ink: #1c2430;
  --ink-soft: #4a5568;
  --paper: #f6f5f2;
  --paper-raised: #ffffff;
  --line: #dbd7cd;
  --navy: #223146;
  --navy-deep: #16202e;
  --gold: #9c7a3c;
  --gold-soft: #cbb27f;
  --radius: 2px;
  --max-w: 1160px;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy-deep);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.9em;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--navy-deep);
  background: var(--navy-deep);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy-deep);
  border: 1px solid var(--navy-deep);
}
.btn-outline:hover { background: var(--navy-deep); color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246,245,242,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
}
.brand-name span { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--navy-deep); border-bottom-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy-deep);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--paper-raised);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 28px 26px;
    gap: 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 76px 0;
}
.hero-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(22,32,46,0.18), rgba(22,32,46,0));
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-stats div strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--navy-deep);
}
.hero-stats div span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; padding: 44px 0; }
}

.section { padding: 84px 0; }
.section-alt { background: var(--paper-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-navy { background: var(--navy-deep); color: #eef1f5; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #c3cad4; }
.section-head { max-width: 640px; margin: 0 0 48px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.card i { font-size: 1.7rem; color: var(--gold); margin-bottom: 16px; }

.icon-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.icon-line i { font-size: 1.3rem; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.icon-line h4 { margin-bottom: 4px; }
.icon-line p { margin: 0; }

table.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
table.info-table th, table.info-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
table.info-table th { font-family: var(--serif); color: var(--navy-deep); background: var(--paper); }

.pillar-list { list-style: none; padding: 0; margin: 0; }
.pillar-list li {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.pillar-list li:last-child { border-bottom: none; }
.pillar-list i { color: var(--gold); font-size: 1.2rem; margin-top: 2px; }

.page-banner {
  padding: 58px 0 46px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-raised);
}
.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--gold); }

.site-footer {
  background: var(--navy-deep);
  color: #c3cad4;
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 32px; width: 32px; }
.footer-brand span { font-family: var(--serif); font-size: 1.15rem; color: #fff; }
.site-footer h5 {
  color: #fff; font-family: var(--sans); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #c3cad4; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--gold-soft); margin-top: 3px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.8rem; color: #8b95a3; flex-wrap: wrap; gap: 10px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-size: 0.86rem; font-weight: 600;
  margin-bottom: 7px; color: var(--navy-deep);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--paper-raised);
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--gold);
  outline: none;
}
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: -6px; }
.form-status { margin-top: 16px; font-size: 0.9rem; }
.form-status.ok { color: #2f6b3f; }
.form-status.err { color: #a13a3a; }

.contact-info-card {
  background: var(--navy-deep);
  color: #eef1f5;
  padding: 36px;
  border-radius: var(--radius);
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .icon-line p, .contact-info-card .icon-line a { color: #c3cad4; }

.legal-body { max-width: 780px; }
.legal-body h2 { margin-top: 2.2em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body ul, .legal-body ol { color: var(--ink-soft); }
.legal-body li { margin-bottom: 0.5em; }
.legal-updated {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-bottom: 30px;
}

.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--navy-deep);
  color: #eef1f5;
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  z-index: 200;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { color: #c3cad4; font-size: 0.88rem; margin: 0 0 16px; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: 0.85rem; }
.cookie-actions .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.cookie-actions .btn-outline:hover { background: rgba(255,255,255,0.1); }

.disclaimer-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--navy);
  background: rgba(34,49,70,0.08);
  padding: 5px 11px;
  border-radius: 2px;
  margin-bottom: 12px;
}
