:root {
  color-scheme: light;
  --ink: #203f35;
  --paper: #faf7ef;
  --muted: #526259;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 0.22em;
}
a:focus-visible {
  outline: 3px solid #d69e6d;
  outline-offset: 6px;
  border-radius: 4px;
}
.wrap {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}
.welcome {
  min-height: calc(100svh - 86px);
  color: white;
  background:
    linear-gradient(90deg, #10291ee8 0%, #10291ec9 34%, #10291e22 76%),
    url("/cafe.webp") center 42% / cover no-repeat;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 24px;
}
.header > a:last-child {
  font-size: 16px;
  text-decoration: none;
}
.welcome .header > a:last-child {
  background: #173b2dcc;
  border: 1px solid #ffffff66;
  padding: 7px 16px;
  border-radius: 100px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -1.4px;
  text-decoration: none;
}
.brand img {
  display: block;
  flex-shrink: 0;
}
.hero {
  display: flex;
  align-items: center;
  min-height: max(550px, calc(100svh - 182px));
  padding-block: 64px 100px;
}
.intro {
  max-width: 600px;
}
.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 22px;
}
h1 {
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin: 0 0 28px;
  font-weight: 650;
}
.lede {
  font-size: 21px;
  max-width: 500px;
  line-height: 1.65;
  margin: 0 0 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 56px;
  padding: 13px 28px;
  border-radius: 100px;
  color: #173b2d;
  background: #e2edc9;
  font-weight: 650;
  text-decoration: none;
}
.button:hover {
  background: #eff6df;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  min-height: 86px;
  padding-block: 22px;
  font-size: 14px;
  color: var(--muted);
}
.footer nav {
  display: flex;
  gap: 28px;
}
.skip {
  position: absolute;
  top: -100px;
  background: white;
  color: var(--ink);
  padding: 12px;
}
.skip:focus {
  top: 8px;
  left: 8px;
  z-index: 2;
}
.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: 64px;
  padding-block: 36px 60px;
}
.legal {
  min-width: 0;
}
.legal-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  padding-top: 8px;
}
.legal-nav a {
  color: var(--muted);
}
.legal h2 {
  scroll-margin-top: 24px;
}
.privacy-page > .header {
  border-bottom: 1px solid #dce1d5;
}
.legal h1 {
  font-size: 42px;
  letter-spacing: -1.3px;
}
.legal h2 {
  font-size: 23px;
  line-height: 1.4;
  margin-top: 32px;
}
.legal p {
  color: var(--muted);
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .legal-layout {
    display: block;
    padding-top: 22px;
  }
  .legal-nav {
    margin-bottom: 32px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 15px;
  }
  .legal-nav strong {
    width: 100%;
  }
  .header {
    min-height: 84px;
    gap: 12px;
  }
  .brand {
    font-size: 22px;
    gap: 8px;
  }
  .welcome {
    min-height: calc(100svh - 106px);
    background-image:
      linear-gradient(0deg, #10291ef2 0%, #10291ecc 48%, #10291e40 100%), url("/cafe.webp");
    background-position: 58% top;
  }
  .hero {
    min-height: max(540px, calc(100svh - 190px));
    align-items: flex-end;
    padding-block: 120px 54px;
  }
  h1 {
    font-size: clamp(40px, 10.5vw, 58px);
    letter-spacing: -1.8px;
  }
  .lede {
    font-size: 19px;
  }
  .button {
    width: 100%;
  }
  .footer {
    min-height: 106px;
    font-size: 13px;
  }
  .footer nav {
    gap: 20px;
  }
}
