:root {
  --cream: #f5efe3;
  --paper: #fffdf8;
  --ink: #2c2925;
  --burgundy: #7b2945;
  --tomato: #c9553d;
  --olive: #526b43;
  --line: #dfd4c3;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(123,41,69,.035) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(123,41,69,.035) 1px, transparent 1px) 0 0 / 34px 34px,
    var(--cream);
}

.bio-panel {
  width: min(100%, 500px);
  text-align: center;
  padding: 8px 0 4px;
}

.brand-mark { font-weight: 900; letter-spacing: .12em; font-size: 22px; margin-bottom: 14px; }
.brand-ana { color: var(--burgundy); }
.brand-sabe { color: var(--olive); margin-left: 8px; }

.ana-photo {
  display: block;
  width: 126px;
  height: 126px;
  object-fit: cover;
  object-position: 50% 24%;
  margin: 0 auto 14px;
  border-radius: 34px;
  border: 6px solid var(--paper);
  box-shadow: 0 8px 24px rgba(75, 46, 33, .16);
}

h1 { margin: 0; font-size: clamp(24px, 5vw, 31px); line-height: 1.08; letter-spacing: 0; }
.intro { margin: 9px auto 20px; max-width: 390px; color: #6c6258; font-size: 14px; line-height: 1.4; }

.links { display: grid; gap: 10px; text-align: left; }
.link-button {
  min-height: 68px;
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.link-button:hover, .link-button:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(65, 44, 33, .15); outline: none; }
.primary { background: var(--tomato); color: #fff; }
.secondary { background: var(--olive); color: #fff; }
.outline { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.button-icon { font-size: 24px; text-align: center; font-weight: 700; }
.link-button strong, .link-button small { display: block; }
.link-button strong { font-size: 15px; line-height: 1.2; }
.link-button small { margin-top: 3px; font-size: 12px; opacity: .86; }
.arrow { font-size: 24px; text-align: right; }
.footer-note { margin: 17px 0 0; color: #82766a; font-size: 11px; }

@media (max-width: 430px) {
  .page-shell { padding: 15px 14px; }
  .brand-mark { margin-bottom: 9px; }
  .ana-photo { width: 104px; height: 104px; margin-bottom: 11px; border-width: 5px; border-radius: 28px; }
  .intro { margin: 7px auto 14px; font-size: 13px; }
  .link-button { min-height: 62px; padding: 9px 13px; }
  .link-button strong { font-size: 14px; }
  .link-button small { font-size: 11px; }
  .footer-note { margin-top: 12px; }
}
