@charset "UTF-8";
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
}
@font-face {
  font-family: Lora;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/Lora/Lora-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: Lora;
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/Lora/Lora-Italic-VariableFont_wght.ttf") format("truetype");
}
/* Modern minimal reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

:root {
  /* Colors – primitives */
  --c-deepblue: #23485E;
  --c-light-blue: #E8ECEB;
  --c-light-sand: #FAF7F2;
  --c-sand: #EFE7DC;
  --c-warm-sand: #A86634;
  --c-archipelago-blue: #4F7C78A;
  --c-archipelago-gray: #607387;
  --c-dim-gray: #D9DFE2;
  --c-black: #000000;
  --c-white: #ffffff;
  --c-white-2: #FBFAF8;
  /* Typography – primitives */
  --font-inter: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-lora: "Lora", Georgia, "Times New Roman", serif;
  /* Spacing – scale */
  --size-1: 0.25rem;
  --size-2: 0.5rem;
  --size-3: 0.75rem;
  --size-4: 1rem;
  --size-6: 1.5rem;
  --size-8: 2rem;
  --size-12: 3rem;
  --size-16: 4rem;
  --size-20: 5rem;
  --size-24: 6rem;
  --size-32: 8rem;
  /* Layout – radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  /* Transitions */
  --duration-fast: 120ms;
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  /* Colors – semantic */
  --color-bg: var(--c-white);
  --color-surface-muted: var(--c-archipelago-blue);
  --color-text: var(--c-black);
  --color-text-muted: #5a5a5a;
  --color-brand: var(--c-deepblue);
  --color-heading: var(--color-brand);
  --color-link: var(--color-brand);
  --color-link-hover: var(--c-black);
  --color-footer-bg: var(--color-brand);
  --color-footer-text: var(--c-white);
  --color-surface-brand-tint: color-mix(in srgb, var(--color-brand) 4%, var(--c-white));
  /* Buttons – filled */
  --btn-bg: var(--color-brand);
  --btn-fg: var(--c-white);
  --btn-border: var(--btn-bg);
  --btn-bg-hover: color-mix(in srgb, var(--btn-bg) 80%, var(--c-black));
  --btn-fg-hover: var(--btn-fg);
  --btn-border-hover: var(--btn-bg-hover);
  /* Buttons – outline */
  --btn-outline-bg: transparent;
  --btn-outline-fg: var(--btn-bg);
  --btn-outline-border: var(--btn-bg);
  --btn-outline-bg-hover: var(--btn-bg);
  --btn-outline-fg-hover: var(--btn-fg);
  --btn-outline-border-hover: var(--btn-bg);
  /* Buttons – shared */
  --btn-padding-y: var(--size-3);
  --btn-padding-x: var(--size-6);
  --btn-radius: var(--radius-md);
  --btn-font-weight: 600;
  /* Typography – semantic */
  --font-body: var(--font-inter);
  --font-heading: var(--font-lora);
  --lh-heading: 1.2;
  --lh-body: 1.6;
  --fw-heading: 500;
  --fw-h1: var(--fw-heading);
  --fw-h2: var(--fw-heading);
  --fw-h3: var(--fw-heading);
  --fw-h4: var(--fw-heading);
  --fw-h5: var(--fw-heading);
  --fw-h6: var(--fw-heading);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-h1: clamp(2rem, 4vw + 1rem, 3rem);
  --fs-h2: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  --fs-h3: 1.25rem;
  --fs-h4: 1.125rem;
  /* Layout */
  --site-header-height: calc(2.5rem + var(--size-6) * 2);
  --container-max-sm: 57.5rem;
  --container-max: 85rem;
  --container-max-lg: 95rem;
  --container-pad: clamp(var(--size-4), 4vw, var(--size-8));
  --section-pad-y: var(--size-12);
  --single-content-pad-top: var(--size-6);
  --block-spacing: var(--size-24);
  --block-spacing-minimal: calc(var(--block-spacing) - var(--size-12));
  --hero-block-spacing: var(--block-spacing-minimal);
  --module-inset-y: var(--size-6);
}

@media (min-width: 48rem) {
  :root {
    --section-pad-y: var(--size-32);
    --single-content-pad-top: var(--size-12);
    --block-spacing: var(--section-pad-y);
    --module-inset-y: var(--size-16);
  }
}
html {
  font-size: 100%;
}

body {
  font-size: var(--fs-body);
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: var(--lh-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-family: var(--font-heading);
  line-height: var(--lh-heading);
}

h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-h1);
}

h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-h2);
}

h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-h3);
}

h4 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-h4);
}

h5 {
  font-weight: var(--fw-h5);
}

h6 {
  font-weight: var(--fw-h6);
}

a {
  color: var(--color-link);
  text-decoration: underline;
}
a:hover {
  color: var(--color-link-hover);
}
a.link-external::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.2em;
  vertical-align: baseline;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 3h7v7M13 3 6 10M9 13H3V7' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
}
footer a {
  color: inherit;
  text-decoration: underline;
}
footer a:hover {
  color: inherit;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

/*# sourceMappingURL=base.css.map */
