:root {
  --ink: #25231f;
  --muted: #756e64;
  --paper: #f7f3eb;
  --card: rgba(255, 253, 249, 0.9);
  --line: #ddd6ca;
  --accent: #d96d4f;
  --accent-dark: #b85039;
  --sage: #b9c8b0;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
}

a { color: inherit; }

.link-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 36px 20px;
  background: linear-gradient(140deg, #f7f3eb 0%, #f2eee4 50%, #e6eee2 100%);
}

.decor {
  position: absolute;
  border: 1px solid rgba(88, 111, 79, 0.22);
  border-radius: 50%;
}

.decor--one { width: 390px; height: 390px; top: -160px; right: -100px; background: rgba(185, 200, 176, 0.42); }
.decor--two { width: 250px; height: 250px; bottom: -110px; left: -90px; background: rgba(242, 214, 141, 0.2); }

.link-card {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  padding: 46px clamp(24px, 7vw, 58px) 34px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  background: var(--card);
  box-shadow: 0 26px 80px rgba(63, 49, 35, 0.13);
  text-align: center;
  backdrop-filter: blur(10px);
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sage);
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.wordmark {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow {
  margin: 19px 0 16px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.15rem, 8vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 310px;
  margin: 18px auto 30px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.link-list { display: grid; gap: 12px; }

.link-button {
  display: grid;
  min-height: 59px;
  grid-template-columns: 28px 1fr 25px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.link-button:hover,
.link-button:focus-visible {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 8px 24px rgba(63, 49, 35, 0.09);
  transform: translateY(-2px);
}

.link-button--primary { border-color: var(--accent); color: #fffaf2; background: var(--accent); }
.link-button--primary:hover, .link-button--primary:focus-visible { border-color: var(--accent-dark); color: #fffaf2; background: var(--accent-dark); }

.link-icon { font-size: 1.15rem; text-align: center; }
.link-icon--text { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; }
.link-arrow { color: var(--muted); font-size: 1.1rem; text-align: right; }
.link-button--primary .link-arrow { color: #fffaf2; }

.footer-note {
  margin: 30px 0 0;
  color: #a19a90;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .link-page { padding: 20px 14px; }
  .link-card { padding: 36px 18px 27px; }
  .link-button { padding: 0 14px; }
}
