:root {
  --navy-900: #002e5b;
  --navy-800: #0f3d6f;
  --navy-700: #123d71;
  --gold-500: #fde428;
  --gold-400: #fff4a3;
  --sand-100: #f7f9fc;
  --sand-200: #e8eff7;
  --white: #ffffff;
  --ink: #152033;
  --muted: #5d6a7d;
  --border: rgba(17, 44, 83, 0.12);
  --shadow: 0 18px 40px rgba(10, 31, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(216, 166, 61, 0.16), transparent 30%),
    linear-gradient(180deg, #f8f5ed 0%, #ffffff 28%, #f7f7f7 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 44, 83, 0.08);
}

.site-header .shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 84px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: inline-flex;
  align-items: center;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  color: var(--navy-900);
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}

.primary-nav a {
  font-size: 0.88rem;
  color: var(--navy-800);
  font-weight: 800;
}

.primary-nav a strong {
  font-weight: 800;
}

.header-cta,
.button,
.footer-inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  white-space: nowrap;
}

.header-cta,
.button-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 12px 28px rgba(253, 228, 40, 0.28);
}

.button-secondary,
.footer-inline-cta {
  background: var(--navy-800);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(31, 53, 91, 0.26);
}

.button:hover,
.header-cta:hover,
.footer-inline-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(17, 44, 83, 0.14);
  background: var(--white);
  color: var(--navy-800);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 700;
}

.site-main {
  padding: 40px 0 72px;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  padding: 36px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(10, 31, 60, 0.98), rgba(24, 56, 103, 0.92)),
    linear-gradient(145deg, rgba(216, 166, 61, 0.18), transparent 40%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero-banner.compact {
  grid-template-columns: 1fr;
}

.hero-copy,
.hero-panel {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-banner h1,
.section-heading h2,
.content-card h3,
.info-card h3,
.footer-column h3,
.page-copy h2 {
  font-family: "Fraunces", serif;
}

.hero-banner h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
}

.hero-banner p,
.page-copy p,
.section-heading p,
.content-card p,
.info-card p,
.footer-intro {
  margin: 0;
  line-height: 1.7;
  color: inherit;
}

.anchor-nav,
.button-row,
.meta-chips,
.stats-grid,
.card-grid,
.link-grid,
.review-track,
.faq-grid,
.footer-grid,
.page-grid,
.footer-links {
  display: grid;
  gap: 16px;
}

.anchor-nav {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}

.anchor-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.92rem;
}

.button-row {
  grid-template-columns: repeat(auto-fit, minmax(200px, max-content));
}

.hero-panel {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.panel-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.panel-list li,
.footer-links li {
  position: relative;
  padding-left: 18px;
}

.panel-list li::before,
.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-400);
}

.section-block,
.content-card,
.review-slider,
.faq-card,
.map-panel,
.page-copy {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section-block,
.page-copy,
.map-panel {
  padding: 28px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-900);
}

.section-heading p {
  color: var(--muted);
}

.meta-chips {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.chip {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(216, 166, 61, 0.12), rgba(17, 44, 83, 0.04));
  border: 1px solid rgba(17, 44, 83, 0.08);
}

.chip strong,
.info-card h3,
.content-card h3,
.review-card h3 {
  display: block;
  margin-bottom: 8px;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.info-card,
.content-card,
.faq-card,
.review-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
}

.card-grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid.cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.link-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.content-card span.label,
.review-card span.label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--navy-700);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.review-slider {
  overflow: hidden;
  padding: 24px;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  transition: transform 0.35s ease;
}

.review-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.review-stars {
  color: var(--gold-500);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.review-controls button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy-800);
  font-size: 1rem;
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.page-grid {
  grid-template-columns: 1.3fr 0.7fr;
  align-items: start;
}

.page-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.05;
  color: var(--navy-900);
}

.page-copy h2 {
  margin: 28px 0 10px;
  font-size: 1.5rem;
  color: var(--navy-900);
}

.page-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.page-copy .button-row {
  margin-top: 24px;
}

.map-panel {
  position: sticky;
  top: 104px;
  background:
    linear-gradient(180deg, rgba(253, 228, 40, 0.12), rgba(15, 61, 111, 0.03)),
    #ffffff;
}

.map-panel h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
}

.site-footer {
  background: linear-gradient(180deg, var(--navy-900), #07162c);
  color: var(--white);
  padding: 56px 0 24px;
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.footer-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.footer-column h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-inline-cta {
  margin: 8px 0 14px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .site-header .shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: 14px;
    overflow: visible;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-banner,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .map-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-main {
    padding-top: 24px;
  }

  .hero-banner,
  .section-block,
  .page-copy,
  .map-panel,
  .review-slider {
    padding: 22px;
    border-radius: 24px;
  }

  .shell {
    width: min(100% - 20px, 1180px);
  }

  .button-row,
  .anchor-nav {
    grid-template-columns: 1fr;
  }
}
