:root {
  --navy: #0b1f3a;
  --navy-2: #143056;
  --gold: #c4a35a;
  --gold-2: #d4b56e;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --ink: #1a2332;
  --muted: #5c6675;
  --line: #e4dccb;
  --danger: #8a3b22;
  --ok: #2c6e4f;
  --shadow: 0 18px 40px rgba(11, 31, 58, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-2); }
h1, h2, h3, .brand-name, .display {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
}

.skip {
  position: absolute; left: -999px;
}
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 80; }

.disclosure {
  background: var(--navy);
  color: #e8e0d0;
  font-size: 13px;
  padding: 8px 16px;
  text-align: center;
}
.disclosure strong { color: var(--gold-2); }

.topbar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.topbar-inner, .wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.brand img { width: 44px; height: 44px; }
.brand-name { font-size: 20px; display: block; }
.brand small { display: block; color: var(--muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
}
nav a:hover, nav a.active { background: var(--cream); color: var(--navy); }
.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end start;
  color: #fff;
  background: #0b1f3a center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,31,58,.88) 0%, rgba(11,31,58,.45) 70%, rgba(11,31,58,.2) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 720px;
}
.kicker {
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1 { color: #fff; font-size: clamp(32px, 5vw, 56px); margin: 10px 0 16px; }
.hero p { color: #efe7d8; font-size: 18px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 800; border-radius: 999px;
  padding: 12px 20px; border: 0; cursor: pointer; font-size: 15px;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-line { background: #fff; color: var(--navy); border: 1px solid var(--line); }

.section { padding: 72px 0; }
.section h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 12px; }
.lead { color: var(--muted); font-size: 18px; max-width: 680px; }
.grid { display: grid; gap: 20px; }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card .body { padding: 22px; }
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); }
.photo { height: 210px; object-fit: cover; width: 100%; }

.notice, .disclaimer {
  background: #fff7e8;
  border: 1px solid #ead7a8;
  border-radius: 14px;
  padding: 16px 18px;
  color: #5a4718;
  font-size: 14px;
}
.disclaimer { background: #f3eee4; margin-top: 28px; }

.table-wrap { overflow-x: auto; background: #fff; border-radius: 14px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 15px; }
th { background: var(--navy); color: #fff; }
.addr {
  background: var(--navy);
  color: #efe7d8;
  border-radius: var(--radius);
  padding: 28px;
}
.addr h2, .addr h3 { color: #fff; }
.gold { color: var(--gold-2); }

.timeline { border-left: 3px solid var(--gold); padding-left: 22px; }
.timeline h3 { margin: 0 0 6px; }
.timeline article { margin-bottom: 26px; }

footer {
  background: var(--navy);
  color: #d7d0c3;
  padding: 48px 0 24px;
}
footer a { color: var(--gold-2); text-decoration: none; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
.legal-line { border-top: 1px solid #2a4163; margin-top: 28px; padding-top: 16px; font-size: 13px; }

.form { display: grid; gap: 12px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 12px; font: inherit; background: #fff;
}
label { font-weight: 700; font-size: 14px; }
.cookies {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 16px; z-index: 50;
  display: none; max-width: 720px; margin: 0 auto;
}
.ad-box {
  font-family: Arial, sans-serif;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 10px;
  padding: 14px 16px;
}
.ad-box .url { color: #202124; font-size: 12px; }
.ad-box h3 { color: #1a0dab; font-size: 20px; margin: 4px 0; font-family: Arial, sans-serif; letter-spacing: 0; }
.ad-box p { color: #4d5156; margin: 0; font-size: 14px; }
.copy-row { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.char { font-size: 12px; color: var(--ok); font-weight: 800; white-space: nowrap; }
.kw { display: inline-block; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; margin: 4px 4px 0 0; font-size: 13px; }
.page-hero {
  padding: 48px 0 20px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

@media (max-width: 900px) {
  .g-3, .g-2, .g-4, .foot-grid { grid-template-columns: 1fr; }
  .menu-btn { display: block; }
  nav { display: none; width: 100%; }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: 0 0 16px; }
  .topbar-inner { flex-wrap: wrap; }
}
