:root {
  --navy-950: #061e35;
  --navy-900: #082b4e;
  --navy-800: #0d3c68;
  --navy-700: #125487;
  --green-700: #1f7a16;
  --green-600: #2ca01c;
  --green-100: #e6f5e3;
  --gold-400: #ffca28;
  --ink: #122235;
  --muted: #5d6e7e;
  --line: #d9e2e8;
  --soft: #eef4f1;
  --canvas: #f7f9f7;
  --white: #ffffff;
  --shadow-sm: 0 10px 35px rgba(7, 35, 61, 0.08);
  --shadow-lg: 0 28px 80px rgba(2, 18, 32, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  transform: translateY(-160%);
  border-radius: 0.55rem;
  background: var(--white);
  color: var(--navy-950);
  padding: 0.65rem 1rem;
  font-weight: 750;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(217, 226, 232, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-name {
  color: var(--navy-900);
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.055em;
}

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

.brand-tagline {
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  line-height: 1.1;
  padding-left: 0.75rem;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.desktop-nav > a:not(.button) {
  color: #32495d;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav > a:not(.button):hover {
  color: var(--navy-900);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 0.78rem 1.15rem;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 7px 20px rgba(31, 122, 22, 0.2);
}

.button-primary:hover {
  background: #176111;
  box-shadow: 0 12px 26px rgba(31, 122, 22, 0.26);
}

.button-secondary {
  border-color: #c7d2d9;
  background: var(--white);
  color: var(--navy-900);
}

.button-secondary:hover {
  border-color: #9aaab5;
  background: #f9fbfb;
}

.button-light {
  background: var(--white);
  color: var(--navy-950);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.button-large {
  min-height: 56px;
  padding: 1rem 1.35rem;
}

.button-compact {
  min-height: 44px;
  padding: 0.67rem 1rem;
}

.button-block {
  width: 100%;
}

.external-arrow {
  font-size: 1.05em;
  line-height: 1;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--white);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy-900);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  display: grid;
  width: min(310px, calc(100vw - 40px));
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
}

.mobile-menu nav > a:not(.button) {
  border-radius: 0.55rem;
  padding: 0.75rem;
  color: var(--navy-900);
  font-weight: 650;
  text-decoration: none;
}

.mobile-menu nav > a:not(.button):hover {
  background: var(--soft);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 10%, rgba(44, 160, 28, 0.14), transparent 35%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: -230px;
  right: -80px;
}

.hero-glow-two {
  bottom: -285px;
  left: 40%;
  width: 470px;
  height: 470px;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  padding-block: 5.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
  color: #d6e9f4;
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 5px rgba(255, 202, 40, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.45rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 680px;
  margin: 1.65rem 0 0;
  color: #d8e5ee;
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy-800);
  font-weight: 730;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

.text-link-light {
  color: #e7f3fa;
}

.access-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.access-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.access-mark {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-content: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.access-kicker,
.card-label {
  margin: 0 0 0.2rem;
  color: var(--green-700);
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-card h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.access-card > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.access-card > .button + .button {
  margin-top: 0.7rem;
}

.destination-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.destination-lock {
  display: inline-grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-content: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 900;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-grid p {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  color: #385066;
  font-size: 0.9rem;
  font-weight: 670;
  text-align: center;
}

.trust-grid p + p {
  border-left: 1px solid var(--line);
}

.trust-grid span {
  color: var(--green-700);
  font-weight: 900;
}

.section {
  padding-block: clamp(4.75rem, 9vw, 7.5rem);
}

.section-soft {
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, 0.55fr);
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.section-kicker {
  margin: 0 0 0.55rem;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-heading h2,
.about-grid h2,
.support-panel h2,
.inner-hero h1,
.legal-content h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-heading > p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card,
.destination-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card {
  min-height: 255px;
  padding: 1.5rem;
}

.service-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  border-radius: 0.7rem;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.04em;
}

.service-card h3,
.destination-card h3 {
  margin: 2.25rem 0 0.6rem;
  color: var(--navy-950);
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.service-card p,
.destination-card > p:not(.card-label) {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2.5rem, 8vw, 7rem);
}

.about-copy {
  max-width: 720px;
}

.about-copy p {
  margin: 0 0 1.15rem;
  color: #40566a;
  font-size: 1.02rem;
}

.about-copy .text-link {
  margin-top: 0.45rem;
}

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

.destination-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 1.5rem;
}

.destination-card h3 {
  margin-top: 1.05rem;
}

.destination-card .button {
  margin-top: auto;
}

.section-support {
  padding-top: 0;
}

.support-panel {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  gap: 3rem;
  overflow: hidden;
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 100% 0, rgba(44, 160, 28, 0.24), transparent 35%),
    var(--navy-950);
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
}

.section-kicker-light {
  color: #9ad390;
}

.support-panel h2 {
  max-width: 700px;
  color: var(--white);
}

.support-panel p:not(.section-kicker) {
  max-width: 660px;
  margin: 1rem 0 0;
  color: #c7d9e5;
}

.support-actions {
  display: grid;
  gap: 0.7rem;
}

.support-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  color: #dcecf4;
  font-size: 0.9rem;
  font-weight: 720;
  text-underline-offset: 0.25em;
}

.site-footer {
  background: #041627;
  color: #b7c7d3;
  padding: 4.5rem 0 2rem;
}

.site-footer .brand-name {
  color: var(--white);
}

.site-footer .brand-name span {
  color: #7bcf70;
}

.site-footer .brand-tagline {
  border-color: #345166;
  color: #8fa8ba;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  border-bottom: 1px solid #213d51;
  padding-bottom: 2.5rem;
}

.footer-summary {
  max-width: 430px;
  margin: 1rem 0 0;
  color: #8fa8ba;
  font-size: 0.9rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-content: start;
  gap: 0.65rem 2rem;
}

.footer-nav a,
.footer-legal a,
.footer-inline-link {
  color: #dcecf4;
  text-underline-offset: 0.24em;
}

.footer-nav a {
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-legal {
  display: grid;
  max-width: 970px;
  gap: 0.8rem;
  padding-block: 2rem;
}

.footer-legal p {
  margin: 0;
  color: #93aabd;
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-inline-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #213d51;
  padding-top: 1.4rem;
}

.footer-bottom p {
  margin: 0;
  color: #7892a5;
  font-size: 0.78rem;
}

.inner-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 10%, rgba(44, 160, 28, 0.11), transparent 30%),
    var(--soft);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.inner-hero p {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
}

.breadcrumbs a {
  color: var(--navy-800);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.legal-aside {
  align-self: start;
  position: sticky;
  top: 112px;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--white);
  padding: 1.1rem;
}

.legal-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-aside strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy-950);
}

.legal-content {
  max-width: 760px;
}

.legal-content section + section {
  margin-top: 2.6rem;
}

.legal-content h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.legal-content h3 {
  margin: 1.35rem 0 0.5rem;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: #40566a;
}

.legal-content p {
  margin: 0.75rem 0;
}

.legal-content ul {
  margin: 0.8rem 0;
  padding-left: 1.2rem;
}

.legal-content a {
  color: var(--navy-700);
  font-weight: 650;
  text-underline-offset: 0.23em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.contact-card h2 {
  margin: 0 0 0.75rem;
  color: var(--navy-950);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-card .button + .button {
  margin-top: 0.7rem;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4.5rem;
  }

  .hero-copy {
    max-width: 760px;
  }

  .access-card {
    max-width: 640px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    min-height: 0;
  }

  .destination-card .button {
    margin-top: 1.4rem;
  }

  .support-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .brand-tagline {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 0.45rem;
  }

  .trust-grid p {
    min-height: 48px;
    justify-content: flex-start;
    text-align: left;
  }

  .trust-grid p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .about-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .legal-aside {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 16px;
  }

  .hero-grid {
    padding-block: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13.2vw, 3.4rem);
  }

  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
