:root {
  color-scheme: light;
  --ink: #17221d;
  --muted: #68736c;
  --paper: #f3efe6;
  --card: #fffdf7;
  --green: #214f3b;
  --orange: #d76534;
  --line: rgba(23, 34, 29, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.topbar, main, footer { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.topbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 750; letter-spacing: .02em; }
.brand-mark { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: white; font-size: 14px; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; color: var(--muted); font-size: 14px; }
.nav-login { padding: 8px 18px; border: 1px solid var(--line); border-radius: 999px; }
.hero { min-height: 620px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 66px; align-items: center; padding: 70px 0 90px; }
.eyebrow { margin: 0 0 13px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-family: Georgia, serif; font-size: clamp(49px, 6.5vw, 86px); font-weight: 500; }
h2 { font-family: Georgia, serif; font-size: clamp(36px, 4vw, 56px); font-weight: 500; }
.lead { max-width: 580px; margin-bottom: 30px; color: var(--muted); font-size: 19px; }
.button, form button { border: 0; border-radius: 4px; background: var(--orange); color: white; cursor: pointer; font-weight: 750; text-decoration: none; }
.button { display: inline-block; padding: 14px 23px; }
.availability { margin-top: 24px; color: var(--muted); font-size: 13px; }
.availability span { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: #65a66f; }
.hero-image { position: relative; }
.hero-image img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.82) contrast(.96); border-radius: 3px; }
.image-note { position: absolute; right: -18px; bottom: 22px; padding: 12px 16px; background: var(--card); box-shadow: 0 12px 32px rgba(0,0,0,.12); font-size: 12px; }
.archive { padding: 90px 0; border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.lock-note { margin-bottom: 12px; color: var(--muted); font-size: 13px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 35px; }
.card { min-height: 335px; padding: 28px; background: var(--card); border: 1px solid var(--line); }
.card-number { color: #9aa29d; font: 18px Georgia, serif; }
.tag { margin: 54px 0 12px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card h3 { font: 25px/1.15 Georgia, serif; }
.card p:not(.tag) { color: var(--muted); font-size: 14px; }
.locked { display: inline-block; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); color: var(--green); font-size: 12px; font-weight: 750; }
.about { max-width: 800px; padding: 100px 0; }
.about > p:last-child { color: var(--muted); font-size: 19px; }
.membership { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px; margin-bottom: 80px; background: var(--green); color: white; }
.membership-copy > p:not(.eyebrow), .membership li { color: rgba(255,255,255,.72); }
.membership ul { padding-left: 20px; }
form { padding: 30px; background: var(--card); color: var(--ink); }
label { display: block; margin-bottom: 15px; color: var(--muted); font-size: 12px; font-weight: 700; }
input:not([type="checkbox"]) { width: 100%; margin-top: 6px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 3px; background: #fff; color: var(--ink); font: inherit; }
.consent { display: flex; align-items: center; gap: 9px; }
.consent input { margin: 0; }
form button { width: 100%; padding: 14px; font-size: 14px; }
form button:disabled { cursor: wait; opacity: .68; }
.form-status { min-height: 44px; margin: 14px 0 0; padding: 0; font-size: 13px; }
.form-status.error { padding: 10px 12px; border-left: 3px solid #b94739; background: #f8e6df; color: #7b2b22; }
.form-note { margin-bottom: 0; text-align: center; color: var(--muted); font-size: 12px; }
footer { display: flex; justify-content: space-between; padding: 28px 0 46px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

@media (max-width: 820px) {
  nav a:not(.nav-login) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 55px; }
  .hero-image img { aspect-ratio: 16/10; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 260px; }
  .tag { margin-top: 30px; }
  .membership { grid-template-columns: 1fr; gap: 30px; padding: 42px 28px; }
}

@media (max-width: 520px) {
  .topbar, main, footer { width: min(100% - 24px, 1160px); }
  .brand span:last-child { display: none; }
  h1 { font-size: 48px; }
  .hero { min-height: 0; }
  .section-heading, footer { align-items: flex-start; flex-direction: column; }
  form { padding: 22px; }
}
