:root {
  /* === PRIMARY (Logo Blue) === */
  --color-primary-light: #B8E0F5;
  /* Softer tint for backgrounds */
  --color-primary-mid: #7AC1E5;
  /* Smooth mid-tone between light and primary */
  --color-primary: #3B9DD5;
  /* Main logo blue */
  --color-primary-dark: #2C85B5;
  /* Darker pressed/active */
  --color-primary-darker: #1E5E7F;
  /* Extra dark for strong contrast */

  /* === SECONDARY (Sky Blue) === */
  --color-secondary-lighter: #E0F2FC;
  --color-secondary-light: #D7EEFA;
  /* Very soft sky blue for light sections */
  --color-secondary: #A8D8F0;
  /* Light sky blue (base) */
  --color-secondary-dark: #7CBAD4;
  /* Slightly deeper hover/active */

  /* === ACCENT (Deep Ocean Blue) === */
  --color-accent-light: #8BAFD8;
  /* Muted ocean tint for subtle backgrounds */
  --color-accent: #064A8C;
  /* Deep ocean blue for CTAs & nav */
  --color-accent-dark: #043868;
  /* Even deeper for pressed/active */
  --color-accent-darker: #032C52;

  /* === OPTIONAL TRAVEL VIBES (if you want the same treatment) === */
  --color-sunset-light: #FFD4A8;
  /* Pale warm orange for soft accents */
  --color-sunset: #F7B267;
  /* Sunset orange (base) */
  --color-sunset-dark: #E68A33;
  /* Richer active tone */
  --color-sand: #E8E2D6;

  --color-reef-light: #A7E0D6;
  /* Soft minty reef tint */
  --color-reef: #4CB6A3;
  /* Tropical reef teal */
  --color-reef-dark: #3B8E7F;
  /* Deeper reef teal */

  /* === NEUTRALS (already good, but added light-alt for variety) === */
  --color-almost-white: #FDFDFD;
  --color-body-white: #f8f8f8;

  --color-light: #F4F4F4;
  /* Clean background */
  --color-light-alt: #E9E9E9;
  /* Subtle row alternation */
  --color-dark: #1E1E1E;
  --color-muted: #7A8A92;
  --color-muted-dark: #5C6B73;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 16px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

.hidden {
  display: none;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: var(--color-accent);
  transition: color .1s cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

a:hover {
  color: var(--color-accent-light);
}


body {
  font-family: var(--font-body);
  background-color: var(--color-almost-white);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
  fill: var(--color-reef);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: transparent;
  transition: height .15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.header-wrapper {
  flex-direction: column;
  background-color: var(--color-almost-white)
}


.header-wrapper,
.header-top {
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.header-top {
  align-items: center;
  justify-content: space-between;
}

header svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background-color: transparent;
  padding: 3px;
  border: none;
  color: var(--color-accent-dark);
  transition: color .1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

header a:hover svg {
  color: var(--color-accent)
}

.logo,
.logo a,
.logo a img {
  display: inline-block;
  aspect-ratio: 1 / 1;
  transition: width .25s cubic-bezier(0.455, 0.03, 0.515, 0.955), height .25s cubic-bezier(0.455, 0.03, 0.515, 0.955), filter 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.contact-info {
  display: flex;
  font-size: clamp(.6875rem, .75rem + .125vw, .875rem);
  flex-direction: column;
  margin-left: 2rem;
}

.contact-info a {
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--color-accent-dark);
  transition: color .1s cubic-bezier(0.455, 0.03, 0.515, 0.955), background-color .1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.contact-info a:hover {
  color: var(--color-accent);
  background-color: rgba(0, 0, 0, 0.025);
}

.site-title span {
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.25rem + .25vw, 1.5rem);
  margin-bottom: 4px
}

header .cta {
  margin: 0 0 0 auto;
}

.cta {
  border-radius: 4px;
  font-family: var(--font-heading);
  display: flex;
  justify-content: center;
  border: none;
  font-weight: 600;
  user-select: none;
  width: fit-content;
  background-color: var(--color-primary);
  color: var(--color-almost-white);
  line-height: 1;
  transition: background-color .15s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform .15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.cta:hover {
  background-color: var(--color-primary-mid);
  color: var(--color-almost-white);
}

.cta:active {
  background-color: var(--color-primary-darker);
  transform: scale(.97);
  color: var(--color-almost-white)
}

h1 {
  line-height: 1;
}

h1,
h2 {
  font-family: var(--font-heading);
}

main {
  position: relative;
  margin-top: var(--header-height);
  min-height: 100%;
  z-index: 1;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem;
}

.two-wrapper {
  display: flex;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem;
  align-items: center;
  justify-content: center;
}

footer {
  display: flex;
  background-color: var(--color-accent-dark);
  border-top: 1px solid var(--color-sand);
  color: var(--color-light);
}

footer a {
  color: var(--color-secondary)
}

footer a:hover {
  color: var(--color-secondary-dark)
}


.footer-center {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.social-links svg {
  color: var(--color-secondary);
  vertical-align: middle;
  transition: filter 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.social-links svg:hover {
  filter: brightness(1.2)
}

.left-wrapper,
.right-wrapper {
  display: flex;
  flex-direction: column;
}

input,
select,
textarea {
  font-family: vaR(--font-body);
}

@media screen and (min-width: 851px) {
  :root {
    --header-height: 151.08px;
    --header-height-shrunk: 127.09px;
  }

  header.shrink {
    --header-height: 127.09px
  }

  #hamburger {
    display: none;
  }

  .mobile-only {
    display: none;
  }

  .header-top {
    padding: 4px 8px;
    max-width: 1440px;

    border-bottom: 2px solid var(--color-sand);
  }

  .header-bottom {
    background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-bottom: 1px solid var(--color-muted-dark);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .site-title-mobile {
    display: none;
  }

  .logo,
  .logo a,
  .logo a img {
    width: 96px;
    height: 96px;
  }

  .logo a img:hover {
    filter: brightness(1.2)
  }

  header.shrink .logo,
  header.shrink .logo a,
  header.shrink .logo a img {
    width: 74px;
    height: 74px;
  }

  .main-nav {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }

  .nav-link,
  .has-dropdown {
    padding: 8px 1rem;
    cursor: pointer;
    user-select: none;
    transition: background-color .05s cubic-bezier(0.455, 0.03, 0.515, 0.955), padding .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  header.shrink .nav-link,
  header.shrink .has-dropdown {
    padding: 6px 1rem;
  }

  .main-nav a {
    color: #fff;
    text-decoration: none;
  }

  .nav-link:hover,
  .has-dropdown:hover {
    background-color: var(--color-primary);
  }

  .has-dropdown {
    position: relative;
  }

  .dropdown {
    position: absolute;
    user-select: none;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    background-color: var(--color-accent-dark);
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: background-color .05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .dropdown a {
    padding: 0.5rem 1rem;
    color: #fff;
    white-space: nowrap;
  }

  .dropdown a:hover {
    background-color: var(--color-primary-dark);
  }

  .has-dropdown:hover .dropdown {
    display: flex;
  }

  .site-title {
    margin: 0 auto 0 8px;
    line-height: 1.3;
  }

  .subhead {
    color: var(--color-primary-darker);
    font-size: .875rem
  }

  .cta {
    padding: .8em 1.6em;
  }

  .big-btn {
    padding: 1.2em 2.4em;
    font-size: clamp(.875rem, 1rem + .025vw, 1.25rem);
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto 0 auto auto;
    text-align: center;
    width: fit-content;
    font-size: .875rem;
    gap: 4px;
  }

  .social-links a,
  .social-links svg {
    width: 22px;
    height: 22px
  }

  .contact-info-mobile {
    display: none;
  }

  section {
    padding: 4rem 0;
  }

  footer {
    padding: 2rem 0;
  }

  .footer-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    gap: 8px;
    padding: 0 2rem;
  }

  .footer-center {
    font-size: .875rem
  }

  footer .contact-info img {
    width: 64px;
    height: 64px;
    aspect-ratio: 1/1;
  }

  footer .contact-info {
    display: flex;
    flex-direction: row;
    margin: auto 0
  }

  .footer-contact-info-left {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
  }

  .footer-contact-info-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  footer .contact-info a {
    color: var(--color-secondary);
    width: fit-content;
    padding: 0;
  }

  footer .contact-info a:hover {
    color: var(--color-secondary-dark);
  }

  h1 {
    font-size: clamp(2.125rem, 2.5rem + .25vw, 3.25rem);
    letter-spacing: -1.5px;
    line-height: 1.2;
  }

  h2 {
    font-size: clamp(1.5rem, 1.875rem + .25vw, 2.25rem);
    letter-spacing: -.25px;
    line-height: 1.4;
  }

  h3 {
    font-size: 1.25rem;
    line-height: 1.6;
  }

}

@media screen and (max-width: 850.99px) {

  :root {
    --header-height: 80px;
  }

  .desktop-only {
    display: none;
  }

  .no-scroll {
    overflow-y: hidden;
  }

  .two-wrapper {
    flex-direction: column;
  }

  .header-top,
  .header-bottom {
    padding: 0 1rem;
  }

  .header-top {
    height: 100%;
  }

  .header-wrapper {
    height: 100%;
    transition: height .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .header-bottom {
    position: relative;
    transition: height .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    border-bottom: 1px solid var(--color-light-alt);
  }

  header .contact-info {
    display: none;
  }

  header {
    max-height: 80px;
    height: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: height .25s cubic-bezier(0.455, 0.03, 0.515, 0.955), max-height .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  header.shrink {
    --header-height: 64px;
    max-height: 64px
  }

  header.shrink .logo,
  header.shrink .logo a,
  header.shrink .logo a img {
    width: 56px;
    height: 56px;
  }

  header .cta {
    order: 3;
    border-radius: 999px;
    padding: .85em 1.5em;
  }

  .hamburger {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 14px;
    width: 28px;
    transform: scale(1);
    transform-origin: center;
    margin: 8px 12px 8px 0;
    cursor: pointer;
    align-self: center;
    justify-self: end;
  }

  .hamburger span {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--color-accent-dark);
    border-radius: 2px;
    left: 0;
  }

  .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.3s ease;
  }

  .hamburger span:nth-child(2) {
    top: 6px;
    transition: all 0.1s ease;
  }

  .hamburger span:nth-child(3) {
    bottom: 0;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 6px;
    background-color: var(--color-secondary)
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 6px;
    background-color: var(--color-secondary)
  }

  .site-title-mobile {
    margin: 8px auto 4px 0;
    line-height: 1.4;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-almost-white);
    font-size: 1.5rem;
  }

  .site-title,
  .footer-center-top {
    display: none
  }

  .logo,
  .logo a,
  .logo a img {
    order: 2;
    flex: 1;
    width: 64px;
    height: 64px;
  }

  .cta {
    padding: .75em 1.25em;
    font-size: .875rem;
  }

  .big-btn {
    padding: 1.2em 2.4em;
    font-size: clamp(.875rem, 1rem + .025vw, 1.25rem);
  }

  .social-links a,
  .social-links svg {
    width: 28px;
    height: 28px
  }

  .mobile-menu {
    position: fixed;
    left: 0;
    top: var(--header-height);
    background: linear-gradient(to bottom, #064a8c 0%, #043767 100%);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
    padding: 1rem 1rem calc(6rem + env(safe-area-inset-bottom));
    height: 100vh;
    width: 80%;
    gap: 12px;
    box-shadow: none;
    font-size: 1.0125rem;
    transform: translateX(-100%);
  }

  .mobile-menu.open {
    transform: translateX(0%);
    gap: 12px;
    overflow-y: scroll;
    scrollbar-width: none;
  }

    .mobile-menu.open::-webkit-scrollbar {
    display: none;
  }

  .dropdown {
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 10;
  }

  .dropdown a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }

  .mobile-menu a {
    color: var(--color-secondary);
  }

  .mobile-menu a:hover:not(.accordion-toggle) {
    color: var(--color-secondary-light);
  }

  .has-dropdown .dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    padding: 0;
    margin: 0;
  }

  .has-dropdown.open .dropdown {
    max-height: 500px;
    border-radius: 12px;
    padding: .25rem 0;
    margin: .5rem 0;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .accordion-toggle {
    display: block;
    cursor: pointer;
    position: relative;
  }

  .accordion-toggle.active {
    color: var(--color-secondary-light);
  }

  .accordion-toggle::after {
    content: "+";
    position: absolute;
    right: 10px;
    top: -7px;
    font-size: 1.5rem;
    transition: transform 0.4s ease;
  }

  .has-dropdown.open .accordion-toggle::after {
    transform: rotate(135deg);
  }

  .contact-info-mobile {
    display: flex;
    flex-direction: column;
    margin: auto 0 0;
    font-size: .9375rem;
    color: var(--color-almost-white)
  }

  .contact-info-mobile img {
    width: 64px;
    height: 64px;
    margin: 0;
  }

  h1 {
    font-size: 2.125rem;
    letter-spacing: -.25px;
    line-height: 1.25;

  }

  h2 {
    font-size: 1.6375rem;
    letter-spacing: -.25px;
    line-height: 1.4;
  }

  h3 {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  footer {
    padding: 2rem 2rem 4rem;
  }

  .footer-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    font-size: 15px;

  }

  footer .contact-info-mobile {
    grid-row: 1;
    align-items: center;
    justify-content: center;
  }

  .footer-right {
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: .75rem auto;
    gap: .5rem;
  }

  .footer-center {
    margin-top: 1rem;
    grid-row: 3;
  }

  footer .contact-info-mobile img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    max-width: 80px;
    margin-bottom: .5rem;
  }

  footer .social-links {
    gap: 1.25rem
  }

}