:root {
  --navy: #0E2238;
  --navy-2: #16324F;
  --steel: #4C6B8A;
  --gold: #A9824F;
  --bg: #F7F7F5;
  --bg-alt: #EFEFEC;
  --ink: #1B232C;
  --ink-soft: #4A5560;
  --line: #DEDEDA;
  --white: #FFFFFF;
  --radius: 2px;
  --maxw: 1180px;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

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

h1 { font-size: clamp(34px, 5vw, 54px); letter-spacing: -0.01em; }
h2 { font-size: clamp(26px, 3.4vw, 36px); }
h3 { font-size: 20px; }

p { margin: 0 0 16px; color: var(--ink-soft); }

.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 60ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-2); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

header.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo img { width: 100%; height: 100%; object-fit: cover; }

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.brand-name span { color: var(--gold); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

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

@media (max-width: 860px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  nav.main-nav.open { max-height: 420px; }
  nav.main-nav a {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: block; }
}

.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px 24px 100px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { color: var(--white); }

.hero .lead { color: #C7D2DD; }

.hero-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}

.hero-art img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--white);
  display: block;
}

.hero-stat .label {
  font-size: 13px;
  color: #9FB0C2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: #B9C5D1; }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.card .ph {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}

.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 15px; }

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/11;
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-check li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.list-check li:last-child { border-bottom: none; }
.list-check .ph {
  color: var(--gold);
  font-size: 19px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #B9C5D1; max-width: 540px; margin: 0 auto 28px; }

footer.site-footer {
  background: var(--navy);
  color: #AEBBC8;
  padding: 64px 0 28px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-grid h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-grid a {
  display: block;
  text-decoration: none;
  color: #AEBBC8;
  padding: 5px 0;
}
.footer-grid a:hover { color: var(--white); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand .brand-logo { background: rgba(255,255,255,0.08); }
.footer-brand-name {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--white);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  padding: 5px 0;
  align-items: flex-start;
}
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact .ph { color: var(--gold); margin-top: 3px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}

.footer-disclaimer {
  font-size: 12.5px;
  color: #7E8DA0;
  max-width: 760px;
  margin: 22px 0 0;
  line-height: 1.6;
}

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

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: #B9C5D1; margin: 0; }

.breadcrumb {
  font-size: 13px;
  color: #8DA0B5;
  margin-bottom: 14px;
}
.breadcrumb a { color: #B9C5D1; text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal-content h2 { margin-top: 40px; font-size: 22px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { color: var(--ink-soft); padding-left: 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.legal-content th, .legal-content td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.legal-content th { background: var(--bg-alt); color: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.info-card ul { list-style: none; padding: 0; margin: 0; }
.info-card li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.info-card li:last-child { border-bottom: none; }
.info-card .ph { font-size: 22px; color: var(--gold); margin-top: 2px; }
.info-card .label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 2px; }
.info-card .value { color: var(--navy); font-weight: 500; }

form.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-row.checkbox input { width: auto; margin-top: 4px; }
.form-row.checkbox label { font-weight: 400; color: var(--ink-soft); font-size: 13.5px; margin: 0; }

.form-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: #F0F5F1;
  border: 1px solid #BFD8C5;
  color: #2F5E3A;
  padding: 16px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14.5px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 24px;
}
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .about-values { grid-template-columns: 1fr; } }

.timeline {
  border-left: 2px solid var(--line);
  padding-left: 28px;
  margin-left: 6px;
}
.timeline-item { margin-bottom: 30px; position: relative; }
.timeline-item:before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-item .year {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 4px;
  display: block;
}

#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--navy);
  color: #DCE3EA;
  padding: 20px 24px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.18);
  transform: translateY(110%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-text { font-size: 14px; max-width: 640px; line-height: 1.55; }
.cookie-text a { color: var(--gold); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cookie-actions .btn-primary {
  background: var(--gold);
}
.cookie-actions .btn-primary:hover { background: #8E6E3F; }

.cookie-actions .btn-ghost {
  border-color: #4C6B8A;
  color: #DCE3EA;
}
.cookie-actions .btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero-inner { padding: 50px 20px 60px; }
}
