﻿:root {
  --navy: #183042;
  --navy-2: #213f52;
  --cream: #fbf7ec;
  --ivory: #fffdf7;
  --gold: #b79255;
  --green: #587967;
  --burgundy: #a84d55;
  --ink: #1e262b;
  --muted: #61707a;
  --line: #e7ddcb;
  --shadow: 0 18px 45px rgba(24, 48, 66, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid rgba(183, 146, 85, .65); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .2px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 15px;
  border: 2px solid var(--gold);
}
.brand small {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}
.nav-toggle { display: none; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.menu-button span,
.menu-button span::before,
.menu-button span::after {
  content: "";
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  position: relative;
}
.menu-button span::before { position: absolute; top: -7px; }
.menu-button span::after { position: absolute; top: 7px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--burgundy);
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.button:hover, .nav-cta:hover { background: #8f3f47; color: #fff; }
.button.secondary {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.button.secondary.light {
  color: var(--navy);
  background: transparent;
  border-color: var(--gold);
}
.button.dark { background: var(--navy); }
.button.gold { background: var(--gold); color: var(--navy); }

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,48,66,.88), rgba(24,48,66,.55), rgba(24,48,66,.24));
  z-index: 1;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 760px; }
.hero-home .hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  color: #f2d79e;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
}
h1, h2, h3 { line-height: 1.18; margin: 0 0 16px; color: var(--navy); }
.hero h1 { color: #fff; font-size: clamp(46px, 7vw, 84px); margin-bottom: 12px; }
.hero h2 { color: #fff; font-size: clamp(25px, 3vw, 38px); }
.hero p { font-size: 19px; max-width: 720px; }
.hero-home h2,
.hero-home p {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.hero-home .hero-actions {
  justify-content: center;
}
.hero-actions, .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.center-actions { justify-content: center; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.trust-row span {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  font-weight: 750;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.section { padding: 82px 0; }
.section.alt { background: var(--cream); }
.section.dark {
  background: var(--navy);
  color: #dce7ea;
}
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .card {
  color: var(--ink);
}
.section.dark .card h3 {
  color: var(--navy);
}
.section.dark .card p {
  color: #42515b;
}
.section-head { max-width: 820px; margin: 0 auto 36px; text-align: center; }
.section-head p { color: var(--muted); margin: 0; }
.section.dark .section-head p { color: #c8d3d8; }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: 22px; }
.lead { font-size: 19px; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .profile-card, .search-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(24,48,66,.07);
}
.card img, .profile-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(183,146,85,.15);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 16px;
}
.icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.profile-card .meta {
  color: var(--burgundy);
  font-weight: 800;
  margin-bottom: 8px;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--navy);
  background: var(--cream);
}

.search-card { max-width: 1050px; margin: 0 auto; }
.search-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.field label { display: block; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.field select, .field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.wide-copy {
  max-width: 920px;
  margin: 0 auto;
  font-size: 18px;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.split img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.check-list { padding-left: 20px; }
.check-list li { margin: 10px 0; }
.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.table th, .table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.table th { background: var(--cream); color: var(--navy); }

.faq { max-width: 940px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 18px 20px;
}
.faq summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--navy);
}
.faq p { color: var(--muted); margin-bottom: 0; }

.footer {
  background: #121b22;
  color: #d8e0e3;
  padding: 58px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.footer h3 { color: #fff; font-size: 17px; }
.footer a { display: block; color: #d8e0e3; margin: 8px 0; }
.footer a:hover { color: #f2d79e; }
.copy {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 30px;
  padding-top: 22px;
  color: #aebbc1;
  font-size: 14px;
}

@media (max-width: 980px) {
  .menu-button { display: flex; }
  .nav { flex-wrap: wrap; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 18px;
  }
  .nav-links a { padding: 14px 0; border-top: 1px solid var(--line); }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .hero { min-height: 600px; }
  .trust-row, .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid, .grid.two, .search-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .split img { height: 340px; }
}
@media (max-width: 620px) {
  .nav { min-height: 68px; padding: 0 16px; }
  .brand small { display: none; }
  .hero { min-height: 640px; }
  .hero p { font-size: 17px; }
  .section { padding: 58px 0; }
  .grid.four, .trust-row { grid-template-columns: 1fr; }
  .button, .nav-cta { width: 100%; }
  .card, .profile-card, .search-card { padding: 20px; }
  .card img, .profile-card img { height: 190px; }
  .table { font-size: 14px; }
  .table th, .table td { padding: 12px; }
}

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