:root {
  --color-paper: #F3F2ED;
  --color-ink: #202329;
  --color-blue: #3857C8;
  --color-coral: #E36B55;
  --color-sage: #BFD8C8;
  --color-gold: #DFC553;
  --color-white: #FFFFFF;
  --color-ink-soft: #4A4E57;

  --font-heading: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --text-display-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  --text-display-leading: 1.1;
  --text-display-weight: 700;

  --text-h1-size: clamp(2rem, 3.5vw + 0.75rem, 3rem);
  --text-h1-leading: 1.2;
  --text-h1-weight: 700;

  --text-h2-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
  --text-h2-leading: 1.3;
  --text-h2-weight: 700;

  --text-h3-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
  --text-h3-leading: 1.4;
  --text-h3-weight: 600;

  --text-body-large-size: 1.125rem;
  --text-body-large-leading: 1.6;
  --text-body-large-weight: 400;

  --text-body-size: 1rem;
  --text-body-leading: 1.6;
  --text-body-weight: 400;

  --text-caption-size: 0.875rem;
  --text-caption-leading: 1.5;
  --text-caption-weight: 400;

  --text-button-size: 1rem;
  --text-button-leading: 1;
  --text-button-weight: 600;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  --container-max: 75rem;
  --container-gutter-mobile: 1.5rem;
  --container-gutter-desktop: 3rem;

  --surface-paper: var(--color-paper);
  --surface-ink: var(--color-ink);
  --surface-blue: var(--color-blue);
  --surface-coral: var(--color-coral);
  --surface-sage: var(--color-sage);
  --surface-gold: var(--color-gold);
  --surface-white: var(--color-white);

  --border-subtle: 1px solid rgba(32, 35, 41, 0.1);
  --shadow-interactive: 0 2px 4px rgba(0, 0, 0, 0.1);

  --radius-none: 0;
  --radius-small: 4px;
  --radius-medium: 8px;

  --transition-fast: 200ms ease;
  --focus-outline: 2px solid var(--color-gold);
  --focus-outline-offset: 2px;

  --target-size-min: 44px;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: var(--text-body-weight);
  line-height: var(--text-body-leading);
  color: var(--color-ink);
  background-color: var(--color-paper);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--text-h1-weight);
  line-height: var(--text-h1-leading);
  color: var(--color-ink);
  margin-block-end: var(--space-4);
}

h1 {
  font-size: var(--text-h1-size);
  line-height: var(--text-h1-leading);
}

h2 {
  font-size: var(--text-h2-size);
  line-height: var(--text-h2-leading);
}

h3 {
  font-size: var(--text-h3-size);
  line-height: var(--text-h3-leading);
  font-weight: var(--text-h3-weight);
}

h4,
h5,
h6 {
  font-size: var(--text-h3-size);
  line-height: var(--text-h3-leading);
  font-weight: var(--text-h3-weight);
}

p {
  margin-block-end: var(--space-4);
}

blockquote {
  margin-block-end: var(--space-4);
  padding-inline-start: var(--space-4);
  border-inline-start: 3px solid var(--color-gold);
}

address {
  font-style: normal;
}

pre {
  margin-block-end: var(--space-4);
  overflow-x: auto;
}

code,
kbd,
samp {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

hr {
  border: none;
  border-block-start: var(--border-subtle);
  margin-block: var(--space-6);
}

figure {
  margin-block-end: var(--space-4);
}

figcaption {
  font-size: var(--text-caption-size);
  line-height: var(--text-caption-leading);
  color: var(--color-ink-soft);
  margin-block-start: var(--space-2);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--container-gutter-desktop);
  }
}

.surface-paper {
  background-color: var(--surface-paper);
  color: var(--color-ink);
}

.surface-ink {
  background-color: var(--surface-ink);
  color: var(--color-white);
}

.surface-blue {
  background-color: var(--surface-blue);
  color: var(--color-white);
}

.surface-coral {
  background-color: var(--surface-coral);
  color: var(--color-white);
}

.surface-sage {
  background-color: var(--surface-sage);
  color: var(--color-ink);
}

.surface-gold {
  background-color: var(--surface-gold);
  color: var(--color-ink);
}

.surface-white {
  background-color: var(--surface-white);
  color: var(--color-ink);
}

.surface-ink h1,
.surface-ink h2,
.surface-ink h3,
.surface-ink h4,
.surface-ink h5,
.surface-ink h6,
.surface-blue h1,
.surface-blue h2,
.surface-blue h3,
.surface-blue h4,
.surface-blue h5,
.surface-blue h6,
.surface-coral h1,
.surface-coral h2,
.surface-coral h3,
.surface-coral h4,
.surface-coral h5,
.surface-coral h6 {
  color: var(--color-white);
}

.surface-ink p,
.surface-blue p,
.surface-coral p {
  color: var(--color-white);
}

.surface-ink .text-secondary,
.surface-blue .text-secondary,
.surface-coral .text-secondary {
  color: rgba(255, 255, 255, 0.75);
}

.text-secondary {
  color: var(--color-ink-soft);
}

.text-caption {
  font-size: var(--text-caption-size);
  line-height: var(--text-caption-leading);
  font-weight: var(--text-caption-weight);
}

.text-body-large {
  font-size: var(--text-body-large-size);
  line-height: var(--text-body-large-leading);
  font-weight: var(--text-body-large-weight);
}

.text-display {
  font-family: var(--font-heading);
  font-size: var(--text-display-size);
  line-height: var(--text-display-leading);
  font-weight: var(--text-display-weight);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--target-size-min);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-button-size);
  font-weight: var(--text-button-weight);
  line-height: var(--text-button-leading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: var(--radius-small);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

.btn-primary {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-ink);
  color: var(--color-white);
}

.btn-accent {
  background-color: var(--color-coral);
  color: var(--color-white);
}

.btn-accent:hover {
  background-color: var(--color-ink);
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}

.btn-outline:hover {
  background-color: var(--color-ink);
  color: var(--color-white);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

a {
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

input,
textarea,
select {
  width: 100%;
  padding: var(--space-2) 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-ink);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  line-height: var(--text-body-leading);
  color: var(--color-ink);
  transition: border-color var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-ink-soft);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-bottom-color: var(--color-blue);
}

textarea {
  resize: vertical;
  min-height: 6rem;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23202329' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-inline-end: var(--space-4);
}

label {
  display: block;
  font-size: var(--text-caption-size);
  font-weight: 600;
  margin-block-end: var(--space-1);
  color: var(--color-ink);
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  font-family: var(--font-heading);
  font-size: var(--text-h3-size);
  margin-block-end: var(--space-3);
}

.content-list {
  list-style: disc;
  padding-inline-start: var(--space-4);
  margin-block-end: var(--space-4);
}

.content-list li {
  margin-block-end: var(--space-2);
}

.content-list li:last-child {
  margin-block-end: 0;
}

.content-list ul,
.content-list ol {
  margin-block-start: var(--space-2);
  margin-block-end: 0;
}

.content-list ol {
  list-style: decimal;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

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

.flex-row {
  flex-direction: row;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-center {
  align-items: center;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-stretch {
  align-items: stretch;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-justify-evenly {
  justify-content: space-evenly;
}

.flex-gap-1 {
  gap: var(--space-1);
}

.flex-gap-2 {
  gap: var(--space-2);
}

.flex-gap-3 {
  gap: var(--space-3);
}

.flex-gap-4 {
  gap: var(--space-4);
}

.flex-gap-5 {
  gap: var(--space-5);
}

.flex-gap-6 {
  gap: var(--space-6);
}

.flex-gap-7 {
  gap: var(--space-7);
}

.flex-gap-8 {
  gap: var(--space-8);
}

.flex-child-shrink {
  min-width: 0;
  flex-shrink: 1;
}

.flex-child-no-shrink {
  flex-shrink: 0;
}

.flex-child-grow {
  flex-grow: 1;
}

.grid {
  display: grid;
}

.grid-gap-1 {
  gap: var(--space-1);
}

.grid-gap-2 {
  gap: var(--space-2);
}

.grid-gap-3 {
  gap: var(--space-3);
}

.grid-gap-4 {
  gap: var(--space-4);
}

.grid-gap-5 {
  gap: var(--space-5);
}

.grid-gap-6 {
  gap: var(--space-6);
}

.grid-gap-7 {
  gap: var(--space-7);
}

.grid-gap-8 {
  gap: var(--space-8);
}

.grid-child-shrink {
  min-width: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 9999;
  background-color: var(--color-gold);
  color: var(--color-ink);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-small);
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
blockquote:last-child,
ul:last-child,
ol:last-child,
figure:last-child,
pre:last-child,
hr:last-child {
  margin-block-end: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}