:root {
  /* Warm, curated travel-guide palette */
  --cream: #f4ecdd;          /* page background */
  --cream-deep: #efe6d4;     /* subtle vignette edge */
  --card: #fffdf9;           /* near-white card */
  --ink: #2c2a26;            /* dark warm grey type */
  --muted: #8a8377;          /* muted secondary type */
  --line: #ece4d4;           /* hairline borders */
  --tile: #f6efe2;           /* icon tile background */
  --accent: #b56a4b;         /* muted terracotta */
  --accent-soft: rgba(181, 106, 75, .12);
  --radius: 16px;
  /* Soft, layered, premium shadow */
  --shadow:
    0 1px 1px rgba(58, 49, 36, .04),
    0 10px 24px rgba(58, 49, 36, .07),
    0 30px 60px rgba(58, 49, 36, .08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: #1976d2;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 16px 64px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Card ---------- */
.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 44px 30px 30px;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(58, 49, 36, .14));
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 10px 0 4px;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .01em;
}

/* ---------- Links ---------- */
.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  text-decoration: none;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.link:hover {
  transform: translateY(-2px);
  border-color: var(--accent-soft);
  box-shadow: 0 8px 22px rgba(58, 49, 36, .1);
  background: #fffefb;
}

.link:active {
  transform: translateY(0);
}

.link:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

.icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--tile);
  display: grid;
  place-items: center;
}

.icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.label {
  flex: 1 1 auto;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.chevron {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 1.2rem;
  transition: transform .18s ease, color .18s ease;
}

.link:hover .chevron {
  color: var(--accent);
  transform: translateX(4px);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.footer p {
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .01em;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  body { padding: 32px 16px 48px; }
  .card { padding: 34px 20px 24px; border-radius: 20px; }
  h1 { font-size: 1.6rem; }
  .logo { width: 92px; height: 92px; }
  .icon { width: 46px; height: 46px; }
  .icon img { width: 36px; height: 36px; }
  .label { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
