@font-face {
  font-family: "Syne";
  src: url("/fonts/syne-800-latin.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #d1eaea;
  --ink: #43182f;
  --wave-big: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='12' viewBox='0 0 40 12'%3E%3Cpath d='M0 6 Q10 1 20 6 T40 6' fill='none' stroke='%2343182f' stroke-width='0.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
::selection { background: var(--ink); color: var(--bg); }
a { color: inherit; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
  border-radius: 2px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
header { margin-bottom: 48px; text-align: center; }
.logo { display: inline-block; line-height: 0; }
.logo img { height: 112px; width: auto; }

h1, h2 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
h1 {
  font-size: var(--h1-size, clamp(24px, 7.6vw, 72px));
  letter-spacing: -0.01em;
}
.hero { width: fit-content; max-width: 100%; }
.hero-wave {
  width: 100%;
  height: 12px;
  margin: 20px 0 16px;
  background: var(--wave-big) repeat-x left center / 40px 12px;
  animation: wave-run 3s linear infinite;
}
h2 {
  width: fit-content;
  font-size: clamp(20px, 4vw, 24px);
  margin-bottom: 12px;
}
section { padding: 40px 0 32px; }
section + section { padding-top: 0; }
section + section h2::before {
  content: "";
  display: block;
  height: 12px;
  margin-bottom: 28px;
  background: var(--wave-big) repeat-x left center / 40px 12px;
  animation: wave-run 3s linear infinite;
}
section p, section address { max-width: 75ch; }
p { margin: 0 0 12px; }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }
.label { font-weight: 600; }

footer {
  margin-top: 48px;
  font-size: 14px;
}

footer nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }

ul { margin: 0 0 12px; padding-left: 1.2em; max-width: 75ch; }
li { margin-bottom: 4px; }
section h3 {
  font-size: 1em;
  font-weight: 600;
  margin: 20px 0 4px;
}
.todo { background: #fff3a8; outline: 1px dashed var(--ink); padding: 0 4px; }

@keyframes wave-run {
  to { background-position-x: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-wave, section + section h2::before { animation: none; }
}

@media (min-width: 768px) {
  body { font-size: 17px; }
  .wrap { padding: 48px 48px 120px; }
  header { margin-bottom: 88px; text-align: left; }
  .logo img { height: 190px; }
  section { padding: 56px 0 40px; }
  section + section { padding-top: 0; }
  section + section h2::before { margin-bottom: 44px; }
  h2 { margin-bottom: 16px; }
}
