:root {
  --bg: #e8dec7;        /* light desert tan, one flat color */
  --bg-deep: #e8dec7;
  --bg-lift: #e8dec7;
  --ink: #111111;
  --ink-soft: rgba(17, 17, 17, .74);
  --ink-faint: rgba(17, 17, 17, .5);
  --cream: #111111;     /* accent: black on tan */
  --line: rgba(17, 17, 17, .2);
  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --sans: 'DM Sans', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'DM Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 600px; margin: 0 auto; padding: 64px 24px 72px; }

/* decorative icons: anchored to sections, sitting in the side margins */
body { position: relative; overflow-x: hidden; }
.portrait, .links, .meet, .foot { position: relative; }
.decor { position: absolute; z-index: -1; pointer-events: none; opacity: .8; display: none; }
.wrap > * { position: relative; z-index: 1; }
.decor.d1 { left: calc(220px - 50vw); top: -10px;  width: 220px; transform: rotate(-4deg); }
.decor.d2 { right: calc(340px - 50vw); top: 26%;  width: 150px; transform: rotate(4deg); }
.decor.d3 { left: calc(340px - 50vw); top: 20px;   width: 150px; transform: rotate(3deg); }
.decor.d4 { right: calc(340px - 50vw); top: -30px; width: 170px; transform: rotate(-4deg); }
@media (min-width: 1100px) { .decor { display: block; } }
@media (min-width: 1500px) { .decor.d1 { left: calc(284px - 50vw); } .decor.d3 { left: calc(420px - 50vw); } .decor.d2, .decor.d4 { right: calc(420px - 50vw); } }

/* header */
.top { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-bottom: 44px; }
.mark {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 26px; letter-spacing: .02em; line-height: 1;
  transition: border-color .25s ease, transform .25s ease;
}
.mark:hover { border-color: var(--cream); transform: rotate(-6deg); }
.eyebrow {
  margin: 0;
  font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-faint);
}

/* hero */
.hero h1 {
  margin: 0 0 22px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 9vw, 68px); line-height: 1.02; letter-spacing: -.01em;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--ink); opacity: .82; }
.lede { margin: 0 auto; max-width: 520px; color: var(--ink-soft); text-wrap: pretty; }

/* email capture */
.capture { margin: 40px auto 56px; max-width: 520px; }
#signup { display: flex; flex-direction: column; gap: 18px; }
#signup input, #signup select { text-align: center; text-align-last: center; }
#signup button {
  height: 56px; width: 100%; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--ink); color: var(--bg);
  font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
#signup button:hover { background: #000; transform: translateY(-1px); }
#signup button:active { transform: translateY(0); }
#signup.shake { animation: shake .4s ease; }
@keyframes shake { 25% { transform: translateX(-6px); } 50% { transform: translateX(6px); } 75% { transform: translateX(-3px); } }
.fine { margin: 16px auto 0; max-width: 460px; font-size: 14px; line-height: 1.55; color: var(--ink-faint); text-wrap: pretty; }
.done { margin: 0; padding: 18px 0; font-family: var(--serif); font-size: 26px; color: var(--cream); }

/* portrait */
.portrait { margin: 0 auto 72px; width: 320px; max-width: 78vw; }
.portrait img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%;
  filter: saturate(.92);
  outline: 1px solid var(--line); outline-offset: 12px;
}

/* links */
.links h2, .meet h2 {
  margin: 0 0 22px;
  font-family: var(--serif); font-weight: 400; font-size: 38px; line-height: 1.1;
}
.links { text-align: left; margin-bottom: 84px; }
.links h2 { text-align: center; }
.link {
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px 0 24px;
  border-top: 1px solid var(--line);
  transition: padding-left .25s ease;
}
.link:last-child { border-bottom: 1px solid var(--line); }
.link-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.title { font-family: var(--serif); font-size: 27px; line-height: 1.15; text-wrap: balance; }
.arrow { flex: none; width: 22px; height: 22px; fill: none; stroke: var(--cream); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; align-self: center; opacity: .7; transition: transform .25s ease, opacity .25s ease; }
.desc { font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); max-width: 500px; text-wrap: pretty; }
.link:hover .arrow { opacity: 1; transform: translateX(4px); }
.link:hover .arrow.ext { transform: translate(3px, -3px); }
.link:hover .title { color: var(--cream); }
.link:focus-visible { outline: 1px solid var(--cream); outline-offset: 6px; border-radius: 4px; }
.stack { display: flex; margin-top: 6px; }
.stack img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); margin-left: -8px; filter: saturate(.8); }
.stack img:first-child { margin-left: 0; }

/* meet */
.meet { margin: 0 auto 72px; max-width: 520px; }
.meet p { margin: 0 0 20px; color: var(--ink-soft); text-wrap: pretty; }
.meet p:last-child { margin-bottom: 0; }
.meet a { color: var(--cream); border-bottom: 1px solid var(--line); transition: border-color .2s ease; }
.meet a:hover { border-color: var(--cream); }

/* footer */
.foot { display: flex; flex-direction: column; align-items: center; gap: 6px; padding-top: 40px; border-top: 1px solid var(--line); }
.foot p { margin: 0; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--ink-faint); }
.foot p a:hover { color: var(--cream); }
.social {
  width: 48px; height: 48px; border-radius: 50%; margin-bottom: 18px;
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: border-color .25s ease, background .25s ease;
}
.social svg { width: 20px; height: 20px; fill: none; stroke: var(--cream); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.social svg .dot { fill: var(--cream); stroke: none; }
.social:hover { border-color: var(--ink); background: rgba(17, 17, 17, .05); }

/* reveal on load */
.reveal { animation: rise .8s cubic-bezier(.2, .7, .2, 1) both; animation-delay: var(--d, 0s); }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
  .mark, .arrow, #signup button { transition: none; }
}

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (max-width: 480px) {
  .wrap { padding: 44px 20px 56px; }
  .title { font-size: 24px; }
  .links h2, .meet h2 { font-size: 34px; }
  .portrait { margin-bottom: 56px; }
}


/* ---------- controls shared by every form ---------- */
input, select, textarea {
  width: 100%; padding: 14px 0 12px;
  background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  color: var(--ink); font: inherit; line-height: 1.4;
  transition: border-color .2s ease;
}
input::placeholder, textarea::placeholder { color: var(--ink-faint); }
input:focus, select:focus, textarea:focus { outline: none; border-bottom-color: var(--ink); }
select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center; background-size: 18px;
}
select:invalid { color: var(--ink-faint); }
select option { color: var(--ink); background: var(--bg); }
textarea { resize: vertical; min-height: 120px; }
#signup.shake, .form.shake { animation: shake .4s ease; }

/* ---------- subpages ---------- */
.page { text-align: left; }
.page .top, .page .hero, .page .foot, .page .cta-band, .page .trust, .page .skip { text-align: center; }
.page .hero h1 { font-size: clamp(40px, 8vw, 60px); }
.page .hero { margin-bottom: 40px; }
.avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.avatar.big { width: 112px; height: 112px; margin: 0 auto 22px; outline: 1px solid var(--line); outline-offset: 8px; }

.form { display: flex; flex-direction: column; gap: 26px; max-width: 520px; margin: 0 auto 56px; }
.form fieldset { border: 0; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.form legend { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 2px; }
.label { font-size: 13px; color: var(--ink-faint); }
.two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.form button {
  height: 56px; border: 0; border-radius: 999px; cursor: pointer; margin-top: 8px;
  background: var(--ink); color: var(--bg);
  font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.form button:hover { background: #000; transform: translateY(-1px); }
.form .fine { text-align: center; margin-top: 0; }
.form + .done, .done { text-align: center; }

.trust { max-width: 460px; margin: 0 auto 56px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.trust p { margin: 0; font-family: var(--serif); font-size: 22px; line-height: 1.3; }
.trust .who { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--ink-faint); }

.skip { margin: 0 auto 56px; }
.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
.btn-row.center { margin-top: 28px; }
.ghost, .pill, .back {
  display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 24px; border-radius: 999px;
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.ghost, .back { border: 1px solid var(--ink); color: var(--ink); }
.ghost:hover, .back:hover { background: var(--ink); color: var(--bg); }
.pill { background: var(--ink); color: var(--bg); }
.pill:hover { background: #000; transform: translateY(-1px); }

.cta-band { max-width: 520px; margin: 0 auto 64px; padding: 36px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta-band p { margin: 0; font-family: var(--serif); font-size: 24px; line-height: 1.25; text-wrap: balance; }

.guide { max-width: 520px; margin: 0 auto 56px; }
.guide h2 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 36px 0 10px; }
.guide h2:first-child { margin-top: 0; }
.guide p { margin: 0 0 8px; color: var(--ink-soft); }
.guide a { color: var(--ink); border-bottom: 1px solid var(--line); }
.facts { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 22px; }
.facts div { border-top: 1px solid var(--line); padding-top: 10px; }
.facts dt { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.facts dd { margin: 0; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }

.link.hood { flex-direction: row; align-items: center; gap: 18px; }
.link.hood .thumb { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: none; filter: saturate(.85); }
.hood-text { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.page .links { margin-bottom: 56px; }
.page .links .link:first-child { border-top: 1px solid var(--line); }

.foot.slim { gap: 18px; }
.foot.slim p { margin-top: 6px; }

/* ---------- reviews ---------- */
.reviews { margin: 0 auto 84px; }
.reviews h2 { margin: 0 0 10px; font-family: var(--serif); font-weight: 400; font-size: 38px; line-height: 1.1; }
.rating { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 0 28px; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; fill: var(--ink); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; text-align: left; }
.card { margin: 0; padding: 22px 22px 20px; border: 1px solid var(--line); border-radius: 18px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; transition: border-color .25s ease, transform .25s ease; }
.card:hover { border-color: var(--ink); transform: translateY(-2px); }
.card p { margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.28; text-wrap: pretty; }
.card footer { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.card footer span { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.more { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.more .arrow { width: 16px; height: 16px; opacity: 1; }
.more:hover { border-color: var(--ink); }
.arrow.down { transform: none; }
.link:hover .arrow.down { transform: translateY(3px); }

@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .two, .facts { grid-template-columns: 1fr; }
}
