@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(../fonts/cormorant-garamond-latin-600-normal.woff2) format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(../fonts/manrope-latin-400-normal.woff2) format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(../fonts/manrope-latin-700-normal.woff2) format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --navy: #061b3d;
  --ink: #071b3f;
  --blue: #0870b7;
  --blue-dark: #065f99;
  --accent: #b50216;
  --accent-active: #8f0011;
  --gold: #dcb45f;
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 18px 50px rgb(7 27 63 / 16%);
  --container: 1220px;
}

* { box-sizing: border-box; }
html {
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
:where(a, button, input, textarea):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
:where(a, button) { touch-action: manipulation; }
.hero :focus-visible { outline-color: var(--gold); }
#main-content:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
}
.skip-link:focus-visible { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 92px;
  padding: 0 44px;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(7 27 63 / 8%);
  box-shadow: 0 5px 26px rgb(7 27 63 / 8%);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 14vw, 230px);
  line-height: 0;
}
.brand-logo { display: block; width: 100%; height: auto; }
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 36px 0 33px;
}
.nav-links > a { min-height: 92px; padding: 0; line-height: 1; }
.nav-links a.is-active,
.nav-group.is-active > .nav-disclosure { color: var(--accent-active); }
.nav-links > a:hover::after,
.nav-links > a:focus-visible::after,
.nav-links > a:active::after,
.nav-links > a.is-active::after,
.nav-group.is-active::after {
  position: absolute;
  right: 2px;
  bottom: 27px;
  left: 2px;
  height: 2px;
  content: "";
  background: var(--accent-active);
}
.nav-links svg { width: 11px; height: 11px; }
.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 92px;
}
.nav-disclosure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 92px;
  padding: 0;
  color: inherit;
  font-weight: inherit;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.nav-submenu {
  position: absolute;
  top: calc(100% - 18px);
  left: 50%;
  z-index: 30;
  display: none;
  width: max-content;
  min-width: 230px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgb(7 27 63 / 10%);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}
.nav-disclosure[aria-expanded="true"] + .nav-submenu,
.nav-group:hover > .nav-submenu { display: grid; }
.nav-submenu a { min-height: 42px; padding: 11px 13px; border-radius: 6px; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.socials { display: inline-flex; align-items: center; gap: 13px; }
.socials a {
  display: inline-grid;
  width: 18px;
  height: 18px;
  color: #0d70ba;
  place-items: center;
}
.socials svg { width: 16px; height: 16px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 999px;
}
.button svg { width: 15px; height: 15px; }
.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgb(18 168 244 / 28%);
}
.button-secondary {
  color: var(--white);
  background: rgb(255 255 255 / 7%);
  border-color: rgb(255 255 255 / 70%);
}
.header-cta { min-height: 50px; padding-inline: 24px; font-size: 15px; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 557px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}
.hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position-desktop, center right);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(2 15 34 / 95%) 0%, rgb(2 15 34 / 76%) 33%, rgb(2 15 34 / 20%) 67%, rgb(2 15 34 / 10%) 100%),
    linear-gradient(180deg, rgb(2 15 34 / 10%) 0%, rgb(2 15 34 / 6%) 68%, rgb(2 15 34 / 52%) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(100% - 64px, var(--container));
  min-height: 557px;
  margin: 0 auto;
  padding: 36px 0;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 510px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 8vw, 98px);
  font-weight: 600;
  line-height: .95;
}
.gold-rule { width: 82px; height: 4px; margin: 22px 0 20px; background: var(--gold); }
.hero-subtitle {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.15;
}
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 700;
}
.hero-note svg { width: 19px; height: 19px; color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 24px max(32px, calc((100vw - var(--container)) / 2));
  background: #fff8f9;
  box-shadow: inset 0 -1px 0 rgb(7 27 63 / 6%);
}
.trust-strip article {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 56px;
  padding: 0 26px;
  border-right: 1px solid #e5d7bd;
}
.trust-strip article:last-child { border-right: 0; }
.trust-strip svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--navy);
  stroke-width: 1.5;
}
.trust-strip p { margin: 0; font-size: 15px; line-height: 1.35; }
.trust-strip strong, .trust-strip span { display: block; }

@media (max-width: 1280px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-links, .header-cta { display: none; }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--navy);
    background: transparent;
    border: 1px solid rgb(7 27 63 / 14%);
    border-radius: 50%;
    place-items: center;
  }
  .mobile-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 18px;
    padding: 0 0 20px;
  }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a {
    padding: 10px 0;
    font-weight: 700;
    border-bottom: 1px solid rgb(7 27 63 / 10%);
  }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .trust-strip article { border-bottom: 1px solid #e5d7bd; }
}

@media (max-width: 820px) {
  .site-header { min-height: 76px; padding: 0 20px; }
  .brand { width: 172px; }
  .hero, .hero-content { min-height: 620px; }
  .hero-picture { object-position: var(--hero-position-mobile, 88% center); }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgb(2 15 34 / 96%) 0%, rgb(2 15 34 / 75%) 58%, rgb(2 15 34 / 32%) 100%),
      linear-gradient(180deg, transparent, rgb(2 15 34 / 55%));
  }
  .hero-content { width: min(100% - 38px, var(--container)); padding: 72px 0; }
  .hero h1 { max-width: 360px; font-size: clamp(58px, 17vw, 78px); }
  .hero-subtitle { max-width: 340px; font-size: 25px; }
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 10px;
    overflow: visible;
  }
  .trust-strip article {
    min-width: 0;
    min-height: 96px;
    padding: 16px 12px;
    border-right: 1px solid #e5d7bd;
    border-bottom: 1px solid #e5d7bd;
  }
  .trust-strip article:nth-child(2n) { border-right: 0; }
  .trust-strip article:nth-child(n + 3) { border-bottom: 0; }
  .trust-strip article:last-child { display: none; }
  .trust-strip svg { width: 28px; height: 28px; }
}

@media (max-width: 520px) {
  .mobile-nav { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
}
