
/* @import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Hubballi&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Jim+Nightshade&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gruppo&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap');

:root {
    --primary-color-navy: #001226;
    --primary-color-gold: #D4AF37;

    --muted: #61706d;
    --danger: #e8043f;
    --success: #159252;
    --warning: #fdca02;
    --info: #2bc9f2;

    --white: #ffffff;
    --muted-white: rgba(255,255,255,0.68);
    --sand: #eee4ce;
    --ink: #14201e;
    --cream: #fbf7ed;
    --soft-blue: #f8fafc;
    --text-main: #1a202c;
    --text-muted: #64748b;

    --navy-lightest: #8091a1;
    --navy-lighter: #4d6783;
    --navy-light: #1a2b3f;
    --navy-dark: #001226;
    --navy-darker: #000813;
    --navy-darkest: #000207;

    --blue-faint:#f1f6fc;
    --blue-lightest: #809ab6;
    --blue-lighter: #4d6783;
    --blue-light: #1a344f;
    --blue-dark: #001a35;
    --blue-darker: #000e21;
    --blue-darkest: #00030c;

    --gold-faintest: #fffef9;
    --gold-fainter: #fffdf6;
    --gold-faint: #fdfaee;
    --gold-lightest: #f3e5ab;
    --gold-lighter: #e2c876;
    --gold-light-2: #ddc061;
    --gold-light: #d9b74c;
    --gold: #D4AF37;
    --gold-dark: #c7a22b;
    --gold-darker: #b29126;
    --gold-darkest: #695207;

    --etheon-container: 1180px;

    --shadow: 0 24px 70px rgba(8, 33, 30, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--gold-faintest);
  font-family: "Montserrat", "Gruppo", "Josefin Sans", "Varela Round", "Raleway", "Times New Roman", serif;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  vertical-align: middle;
  margin-right: .5rem;
  max-width: 100%;
  color: var(--gold);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--etheon-container));
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy-dark);
  font-family: "Montserrat", "Josefin Sans", "Raleway", "Times New Roman", sans-serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p {
  margin: 0;
}

.lead {
  color: var(--white);
  opacity: 0.75;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
}

.section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn-gold, .btn-primary  {
    background-color: var(--gold);
    color: var(--navy-dark);
    border: none;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(217, 185, 110, 0.20);
}

.btn-gold:hover, .btn-primary:hover {
  background: var(--gold-lighter);
}

.btn-dark {
  color: var(--white);
  background: var(--navy-dark);
  box-shadow: 0 14px 34px rgba(218, 223, 228, 0.18);
}

.btn-dark:hover {
  background: var(--navy-lighter);
}

.btn-light {
  color: var(--white);
  background: var(--navy-dark);
  border-color: var(--white);
}

.btn-light:hover {
  color: var(--navy-dark);
  background: var(--white);
  border-color: var(--gold);
}

.badge {
    background: var(--primary-color-gold);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin-bottom: 1rem !important;
    display: inline-block;
    border-radius: 6px;
    font-size: 0.95em;
}

/******.  Media Query Stuff ***********/
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: none;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 28px 20px 40px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 22px 40px rgba(8,33,30,.1);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a:not(.btn) {
    padding: 9px 0;
    font-size: 1.08rem;
  }

  .menu-toggle {
    display: grid;
  }

  .menu-toggle[aria-expanded="true"] span {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    min-height: 74px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.55rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 74px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .hero-actions .btn {
    width: 75%;
  }

}
