:root {
  --navy: #0b1f3a;
  --navy-2: #122a4a;
  --gold: #c9a227;
  --gold-2: #e0c05a;
  --cream: #f6f3ea;
  --ink: #1a2332;
  --muted: #5c6778;
  --white: #ffffff;
  --line: rgba(11, 31, 58, 0.1);
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.12);
  --radius: 18px;
  --max: 1180px;
  --font: "Source Serif 4", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Header */
.topbar {
  background: var(--navy);
  color: #d7deea;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a:hover { color: var(--gold-2); }
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navwrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font); font-weight: 600; font-size: 1.15rem;
  color: var(--navy);
}
.logo svg { flex-shrink: 0; }
nav ul { display: flex; gap: 22px; list-style: none; align-items: center; flex-wrap: wrap; }
nav a { font-size: 14px; font-weight: 500; color: var(--navy-2); }
nav a:hover, nav a.active { color: var(--gold); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--white);
  padding: 12px 22px; border-radius: 999px; border: 0;
  font-weight: 600; font-size: 14px; cursor: pointer;
  font-family: inherit; transition: 0.2s;
}
.btn:hover { background: #16365c; }
.btn.gold { background: var(--gold); color: var(--navy); }
.btn.gold:hover { background: var(--gold-2); }
.btn.outline { background: transparent; border: 1px solid var(--gold); color: var(--gold-2); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }

/* Hero */
.hero {
  position: relative; min-height: 78vh;
  display: grid; place-items: center;
  color: white; overflow: hidden;
}
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,31,58,.88) 0%, rgba(11,31,58,.45) 70%);
}
.hero-inner { position: relative; z-index: 1; padding: 90px;  }
.eyebrow {
  letter-spacing: 0.22em; text-transform: uppercase; font-size: 12px;
  color: var(--gold-2); font-weight: 600; margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font); font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15; font-weight: 600; margin-bottom: 18px;
}
.hero p { color: #dce4f0; font-size: 1.08rem; margin-bottom: 28px; max-width: 560px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sections */
section { padding: 80px 0; }
h2 {
  font-family: var(--font); font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy); line-height: 1.2; margin-bottom: 12px;
}
.lead { color: var(--muted); max-width: 640px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); }
.card img { height: 180px; width: 100%; object-fit: cover; }
.card .body { padding: 22px; }
.card h3 { font-family: var(--font); color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card a.more { color: var(--gold); font-weight: 600; font-size: 14px; display: inline-block; margin-top: 12px; }
.card .body .btn { margin-top: 16px; }

.page-hero {
  background: var(--navy); color: white; padding: 72px 0 56px;
}
.page-hero h1 { font-family: var(--font); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: #c9d4e4; margin-top: 10px; max-width: 560px; }

form {
  display: grid; gap: 14px;
}
label { font-size: 13px; font-weight: 600; color: var(--navy); }
input, textarea, select {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--line); font-family: inherit; font-size: 15px;
  background: white;
}
textarea { min-height: 140px; resize: vertical; }
.form-card { background: white; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }

.legal { background: white; padding: 40px; border-radius: var(--radius); max-width: 860px; margin: 0 auto; }
.legal h2 { font-size: 1.35rem; margin-top: 28px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 10px; }
.legal ul { padding-left: 20px; }

footer {
  background: var(--navy); color: #c5d0e0; padding: 56px 0 20px;
}
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
.foot-grid.with-visit { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
footer h4 { color: white; font-family: var(--font); margin-bottom: 14px; }
footer a { display: block; margin: 6px 0; font-size: 14px; }
footer a:hover { color: var(--gold-2); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 16px; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

.toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: white;
  padding: 14px 18px; border-radius: 12px; display: none; z-index: 80;
  box-shadow: var(--shadow);
}
.toast.show { display: block; }

@media (max-width: 900px) {
  .grid-3, .grid-2, .foot-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--cream); padding: 16px 20px 24px; border-bottom: 1px solid var(--line); }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: flex-start; }
}

.logo img{
  width: 250px;
}