:root {
  color-scheme: light;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic',
    sans-serif;
  color: #42250f;
  background: #fff4db;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
.hero {
  padding: 56px 20px 28px;
  text-align: center;
  background: linear-gradient(#ffe4a0, #fff4db);
}
.eyebrow {
  margin: 0 0 10px;
  color: #855420;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
h1 {
  margin: 0;
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}
h1 span {
  color: #bd0050;
}
h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.5;
}
h3 {
  margin: 24px 0 6px;
  font-size: 18px;
}
p,
li {
  font-size: 16px;
}
p {
  margin: 12px 0;
}
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid #d4ad7a;
  border-radius: 100px;
  background: #fffaf0;
  text-decoration: none;
}
nav a[aria-current] {
  background: #42250f;
  color: #fffaf0;
  border-color: #42250f;
}
main {
  width: min(100% - 32px, 780px);
  margin: auto;
}
.card {
  margin: 20px 0;
  padding: clamp(22px, 5vw, 38px);
  background: #fffcf7;
  border: 1px solid #edcea0;
  border-radius: 24px;
  box-shadow: 0 5px 0 #edcea0;
}
.policy h2 {
  margin-top: 32px;
  font-size: 21px;
}
ul {
  padding-left: 22px;
}
li + li {
  margin-top: 8px;
}
a {
  color: #a50046;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-thickness: 2px;
}
a:focus-visible {
  outline: 3px solid #007ca6;
  outline-offset: 4px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  color: white;
  background: #ae0049;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 0 #720a35;
}
.email {
  font-weight: 700;
}
.note {
  margin-top: 20px;
  padding: 16px;
  background: #fff0d8;
  border-radius: 14px;
  color: #694219;
}
footer {
  padding: 32px 20px max(34px, env(safe-area-inset-bottom));
  text-align: center;
  color: #694219;
  font-size: 14px;
}
footer a {
  display: inline-block;
  padding: 10px;
  min-height: 44px;
}
@media (prefers-reduced-motion: no-preference) {
  a {
    transition: background-color 120ms;
  }
}
