@font-face {
  font-family: "Geomanist";
  src: url("/fonts/geomanist-regular.woff2") format("woff2"), url("/fonts/geomanist-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Geomanist";
  src: url("/fonts/geomanist-regular-italic.woff2") format("woff2"), url("/fonts/geomanist-regular-italic.woff") format("woff");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --sans: "Geomanist", sans-serif;
  --serif: "Newsreader", serif;
  --site-sans: "Geomanist", sans-serif;
  --site-serif: "Newsreader", serif;
  --site-paper: #f7f5f2;
  --site-ink: #1c1814;
  --site-teal: #0d5c5c;
  --site-muted: #716f66;
  --site-line: rgba(28, 24, 20, 0.1);
  --site-gutter: clamp(20px, 4vw, 56px);
  --site-header-height: 72px;
}

html {
  overflow-x: clip;
  scroll-padding-top: calc(var(--site-header-height) + 28px);
}

body {
  overflow-x: clip;
  padding-top: calc(var(--site-header-height) + 28px);
  font-family: var(--site-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.site-menu-open {
  overflow: hidden;
}

.skip {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(calc(-100% - 16px));
  border-radius: 8px;
  background: var(--site-teal);
  color: #fff;
  font: 600 14px/1.3 var(--site-sans);
  text-decoration: none;
}

.skip:focus,
.skip:focus-visible {
  transform: none;
}

.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;
}

button,
input,
select,
textarea {
  font-family: var(--site-sans);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--site-serif);
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

main > .hero:first-child,
main > .wrap:first-child,
main > .container:first-child {
  padding-top: clamp(32px, 5vw, 72px);
}

header.site-header {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - (var(--site-gutter) * 2)));
  min-height: var(--site-header-height);
  padding: 10px 14px 10px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateX(-50%);
  border: 1px solid var(--site-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(28, 24, 20, 0.09);
  backdrop-filter: blur(14px);
}

.site-header .brand {
  display: inline-flex;
  min-width: 126px;
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
}

.site-header .brand-logo {
  display: block;
  width: auto;
  height: 32px;
  max-width: 150px;
}

.site-header .brand svg:not(.brand-logo) {
  display: none;
}

.site-header .nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.65vw, 24px);
  flex: 1 1 auto;
}

.site-header .nav-links > a,
.site-header .mega-toggle {
  display: inline-flex;
  min-height: 44px;
  padding: 0;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--site-ink);
  font: 400 14px/1.2 var(--site-sans);
  text-decoration: none;
  white-space: nowrap;
}

.site-header .nav-links > a:hover,
.site-header .nav-links > a[aria-current="page"],
.site-header .mega-toggle:hover,
.site-header .mega-toggle[aria-expanded="true"] {
  color: var(--site-teal);
}

.site-header .mega-menu {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.site-header .mega-toggle {
  gap: 7px;
  cursor: pointer;
}

.site-header .mega-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -4px;
  transform: rotate(45deg);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transition: transform 180ms ease;
}

.site-header .mega-toggle[aria-expanded="true"]::after,
.site-header .mega-menu:not(.is-closed):hover .mega-toggle::after {
  transform: translateY(3px) rotate(225deg);
}

.site-header .mega-panel {
  position: absolute;
  z-index: 1010;
  top: calc(100% + 8px);
  left: 50%;
  display: none;
  width: min(520px, calc(100vw - 40px));
  padding: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
  transform: translateX(-50%);
  border: 1px solid var(--site-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(28, 24, 20, 0.16);
}

.site-header .mega-menu:hover > .mega-panel,
.site-header .mega-menu.is-open > .mega-panel {
  display: grid;
}

.site-header .mega-menu.is-closed:hover > .mega-panel {
  display: none;
}

.site-header .mega-item {
  display: flex;
  min-height: 54px;
  padding: 7px 9px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  color: var(--site-ink);
  text-decoration: none;
}

.site-header .mega-item:hover,
.site-header .mega-item:focus-visible {
  background: #e8f0e8;
}

.site-header .mega-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: #e8f0e8;
  color: var(--site-teal);
}

.site-header .mega-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.site-header .mega-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.site-header .mega-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.site-header .mega-desc {
  color: var(--site-muted);
  font-size: 11px;
  line-height: 1.35;
}

.site-header .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.site-header .header-note {
  display: none;
}

.site-header .header-right .button {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 17px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--site-teal);
  color: #fff;
  font: 600 13px/1.2 var(--site-sans);
  text-decoration: none;
  white-space: nowrap;
}

.site-header .header-right .button:hover {
  transform: none;
  background: #094a4a;
}

.site-header .menu-toggle,
.site-header + .mobile-nav {
  display: none;
}

.site-header :is(a, button):focus-visible,
.site-header + .mobile-nav a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid #c8553d;
  outline-offset: 3px;
}

.site-footer {
  padding: clamp(48px, 7vw, 80px) var(--site-gutter) 24px;
  background: #1c1814;
  color: #fff;
  font-family: var(--site-sans);
}

.site-footer-inner,
.site-footer-bottom {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.site-footer-disclaimer {
  width: min(1180px, calc(100% - (var(--site-gutter) * 2)));
  margin: 0 auto;
  padding: 18px 0 0;
  border-top: 1px solid var(--site-line);
  color: var(--site-muted);
  font: 400 12px/1.6 var(--site-sans);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(460px, 2fr);
  gap: clamp(44px, 7vw, 100px);
}

.site-footer-brand img {
  width: auto;
  height: 34px;
  filter: brightness(0) invert(1);
}

.site-footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font: 400 15px/1.65 var(--site-sans);
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.site-footer-nav h2 {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.55);
  font: 600 11px/1.4 var(--site-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer-nav h2 a {
  min-height: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.site-footer-nav h2 a::after {
  content: " →";
}

.site-footer-nav a {
  display: block;
  width: fit-content;
  min-height: 32px;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.86);
  font: 400 14px/1.5 var(--site-sans);
  text-decoration: none;
}

.site-footer-nav a:hover,
.site-footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer-bottom {
  display: flex;
  margin-top: 44px;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.site-footer-bottom p {
  margin: 0;
}

.site-footer-bottom div {
  display: flex;
  gap: 22px;
}

.site-footer-bottom a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1079px) {
  :root {
    --site-header-height: 62px;
  }

  body {
    padding-top: calc(var(--site-header-height) + 22px);
  }

  main > .hero:first-child,
  main > .wrap:first-child,
  main > .container:first-child {
    padding-top: clamp(24px, 6vw, 52px);
  }

  header.site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: var(--site-header-height);
    padding: 7px 8px 7px 16px;
    gap: 10px;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-logo {
    height: 26px;
    max-width: 132px;
  }

  .site-header .nav-links,
  .site-header .header-right .button {
    display: none;
  }

  .site-header .header-right {
    margin-left: auto;
  }

  .site-header .menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--site-teal);
  }

  .site-header .menu-toggle svg {
    width: 24px;
    height: 24px;
  }

  .site-header .menu-toggle[aria-expanded="true"] svg {
    display: none;
  }

  .site-header .menu-toggle[aria-expanded="true"]::before,
  .site-header .menu-toggle[aria-expanded="true"]::after {
    position: absolute;
    width: 22px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    content: "";
  }

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

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

  .site-header + .mobile-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: calc(var(--site-header-height) + 28px) 0 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: #fff;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-header + .mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .mobile-nav .mobile-group {
    width: min(620px, 100%);
    margin: 0 auto;
    padding: 4px 24px;
  }

  .mobile-nav .mobile-group + .mobile-group {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--site-line);
  }

  .mobile-nav .mobile-group-label {
    display: flex;
    min-height: 42px;
    padding: 8px 0 4px;
    align-items: center;
    justify-content: space-between;
    color: var(--site-muted);
    font: 600 10px/1.4 var(--site-sans);
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-nav a {
    display: flex;
    min-height: 46px;
    padding: 10px 0;
    align-items: center;
    color: var(--site-ink);
    font: 400 16px/1.35 var(--site-sans);
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 24, 20, 0.05);
  }

  .mobile-nav a[aria-current="page"] {
    color: var(--site-teal);
    font-weight: 600;
  }

  .mobile-nav .mobile-cta {
    width: min(572px, calc(100% - 48px));
    min-height: 50px;
    margin: 16px auto 0;
    padding: 13px 20px;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--site-teal);
    color: #fff;
    font-weight: 600;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 480px) {
  :root {
    --site-gutter: 20px;
  }

  .site-header .brand-logo {
    height: 24px;
    max-width: 122px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

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

  .site-footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header + .mobile-nav,
  .site-header .mega-toggle::after {
    transition: none;
  }
}

form [role="status"][data-state],
form [data-drking-status][data-state] {
  display: block;
  margin-top: 14px;
  color: var(--site-teal);
  font: 500 14px/1.5 var(--site-sans);
}

form [role="status"][data-state="error"],
form [data-drking-status][data-state="error"] {
  color: #9f2f20;
}

form [role="status"][data-state] a,
form [data-drking-status][data-state] a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

form :is(button, input[type="submit"])[aria-busy="true"] {
  cursor: wait;
  opacity: 0.7;
}

.international-phone-control {
  display: grid !important;
  grid-template-columns: 124px minmax(0, 1fr) !important;
  width: 100% !important;
  min-height: 52px;
  gap: 0 !important;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #d7d5cd;
  border-radius: 11px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.international-phone-control:focus-within {
  border-color: var(--site-teal);
  box-shadow: 0 0 0 3px rgba(13, 92, 92, 0.12);
}

.international-phone-control .country-code-select {
  display: block !important;
  width: 124px !important;
  min-width: 124px !important;
  max-width: 124px !important;
  height: 100% !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 0 28px 0 12px !important;
  border: 0 !important;
  border-right: 1px solid #dedcd5 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background-color: #f2f5f1 !important;
  color: var(--site-ink) !important;
  font: 500 15px/1 var(--site-sans) !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.international-phone-control input[type="tel"] {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: #fff !important;
}

.phone-help {
  display: block;
  margin-top: 6px;
  color: var(--site-muted);
  font: 400 12px/1.4 var(--site-sans);
}

@media (max-width: 380px) {
  .international-phone-control {
    grid-template-columns: 112px minmax(0, 1fr) !important;
  }

  .international-phone-control .country-code-select {
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
    padding-left: 10px !important;
  }
}
