:root {
  color-scheme: light;
  --coral: #f25f57;
  --coral-dark: #c93f39;
  --ivory: #fff8eb;
  --paper: #fffdf8;
  --ink: #171714;
  --muted: #66645e;
  --teal: #147d73;
  --teal-soft: #e7f3ef;
  --gold: #f2bd4b;
  --lilac: #8d7bb4;
  --line: rgba(23, 23, 20, 0.15);
  --line-light: rgba(255, 255, 255, 0.22);
  --shell: 1180px;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

figure {
  margin: 0;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: 88px;
  line-height: 0.92;
}

h2 {
  margin-bottom: 24px;
  font-size: 58px;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.18;
}

p {
  margin-bottom: 20px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ffd4cd;
}

.eyebrow-gold {
  color: var(--gold);
}

.eyebrow-dark {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-header a:focus-visible,
.language-menu summary:focus-visible,
.language-menu-panel a:focus-visible,
.menu-button:focus-visible,
.mobile-nav a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--paper);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 6px 6px 0 var(--coral);
}

.button-primary:hover {
  background: #000;
  box-shadow: 3px 3px 0 var(--coral);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: #000;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 750;
}

.text-link span {
  font-size: 19px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  transition: top 140ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  left: 50%;
  top: 14px;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  width: min(calc(100% - 32px), 1210px);
  min-height: 58px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(23, 23, 20, 0.12);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 8px 28px rgba(23, 23, 20, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: top 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  top: 8px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 12px 34px rgba(23, 23, 20, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  white-space: nowrap;
}

.brand img,
.footer-brand img {
  border-radius: 7px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.desktop-nav a,
.header-cta {
  font-size: 13px;
  font-weight: 750;
}

.desktop-nav a {
  color: var(--muted);
}

.desktop-nav a:hover {
  color: var(--coral-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 4px;
  background: var(--coral);
  color: var(--ink);
}

.header-cta:hover {
  background: var(--coral-dark);
  color: #fff;
}

.language-menu {
  position: relative;
}

.language-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  list-style: none;
  user-select: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.language-menu[open] summary {
  border-color: var(--coral);
  color: var(--ink);
}

.language-menu[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.language-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 11px);
  z-index: 110;
  display: grid;
  min-width: 164px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(23, 23, 20, 0.18);
}

.language-menu-panel a {
  padding: 9px 10px;
  border-radius: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.language-menu-panel a:hover,
.language-menu-panel a[aria-current="page"] {
  background: var(--teal-soft);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  left: 16px;
  right: 16px;
  top: 80px;
  z-index: 95;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(23, 23, 20, 0.18);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav .mobile-app-link {
  border-bottom: 0;
  background: var(--coral);
  color: var(--ink);
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-links a,
.footer-layout > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--coral-dark);
}

.footer-layout > p {
  justify-self: end;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
