:root {
  color-scheme: light;
  --ink: #3b2925;
  --muted: #6f6257;
  --cream: #fff7df;
  --paper: #fffdf6;
  --mint: #8dd8b4;
  --mint-deep: #257b68;
  --gold: #f6bd43;
  --coral: #f47b67;
  --shadow: rgba(74, 50, 33, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  background: #e9f5dd;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "Nunito", system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(246, 189, 67, 0.28), transparent 24rem),
    radial-gradient(circle at 90% 8%, rgba(141, 216, 180, 0.48), transparent 28rem),
    linear-gradient(160deg, #f7f4d9 0%, #e5f2db 55%, #d5ebdc 100%);
}

a {
  color: var(--mint-deep);
}

.site-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 1.2rem;
}

.mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid #65442d;
  border-radius: 18px;
  background: var(--mint);
  box-shadow: 0 8px 0 rgba(101, 68, 45, 0.22);
  font-size: 32px;
}

.brand {
  margin: 0;
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  letter-spacing: -0.04em;
}

.tagline {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

main {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto 3rem;
  padding: clamp(1.35rem, 4vw, 2.75rem);
  border: 1px solid rgba(101, 68, 45, 0.12);
  border-radius: 30px;
  background: rgba(255, 253, 246, 0.94);
  box-shadow: 0 24px 80px var(--shadow);
}

h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h2 {
  margin: 2rem 0 0.55rem;
  color: #4d3429;
  font-size: 1.28rem;
}

p,
li {
  font-size: 1.02rem;
  line-height: 1.7;
}

.lead {
  margin-top: 1.25rem;
  color: #51473f;
  font-size: 1.13rem;
  font-weight: 650;
}

.updated {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.notice {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border-left: 7px solid var(--gold);
  border-radius: 14px;
  background: var(--cream);
}

.actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border: 3px solid #65442d;
  border-radius: 18px;
  color: #35231e;
  background: var(--gold);
  box-shadow: 0 7px 0 rgba(101, 68, 45, 0.24);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.button.secondary {
  background: var(--mint);
}

.support-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.support-form label {
  font-weight: 900;
}

.support-form label span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.8rem 0.95rem;
  border: 2px solid rgba(101, 68, 45, 0.34);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.support-form textarea {
  min-height: 180px;
  resize: vertical;
}

.support-form input:focus-visible,
.support-form select:focus-visible,
.support-form textarea:focus-visible,
.support-form button:focus-visible,
.button:focus-visible {
  outline: 4px solid rgba(37, 123, 104, 0.34);
  outline-offset: 3px;
}

.consent-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 0.45rem 0;
}

.consent-row input {
  min-height: 24px;
  margin: 0.2rem 0 0;
}

.submit-button {
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer {
  padding: 0 1rem 2.5rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 520px) {
  .site-header {
    padding-top: 1.25rem;
  }

  main {
    width: min(100% - 1rem, 900px);
    border-radius: 22px;
  }
}
