:root {
  --ink: #1c1c1c;
  --accent: #c8502b;
  --accent-deep: #a83f20;
  --paper: #ffffff;
  --cream: #faf4ee;
  --line: #ece3da;
  --muted: #6b6b6b;
}

* { box-sizing: border-box; }

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #f7f1ea 0%, #efe6da 100%);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 0;
}

.card-page {
  width: 100%;
  max-width: 440px;
  min-height: 100vh;
  background: var(--paper);
  padding: 48px 28px 36px;
  box-shadow: 0 0 60px rgba(0,0,0,0.06);
}

/* Brand header */
.brand {
  text-align: center;
  margin-bottom: 8px;
}

.wordmark {
  font-weight: 800;
  font-size: 76px;
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
}

.wordmark .y { color: var(--ink); }
.wordmark .d { color: var(--accent); }

.wordmark-sub {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 6px;
  margin: 2px 0 0;
  color: var(--ink);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.heart {
  color: var(--accent);
  font-size: 14px;
}

.heart.small { font-size: 11px; }

/* Welcome */
.welcome {
  text-align: center;
  margin-bottom: 30px;
}

.welcome h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
}

.welcome h2 .accent {
  color: var(--accent);
}

.tagline {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.dots span {
  width: 20px;
  height: 1px;
  background: var(--line);
}

.dots .mid {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Link cards */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

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

.link-card:hover,
.link-card:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(200,80,43,0.12);
  transform: translateY(-1px);
}

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

.icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-instagram {
  background: var(--cream);
}

.icon-review {
  background: var(--accent);
  color: #fff;
  font-size: 18px;
}

.link-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-title {
  font-weight: 600;
  font-size: 15.5px;
}

.link-sub {
  font-size: 12.5px;
  color: var(--muted);
}

.chevron {
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
}

/* Quote */
.quote {
  margin: 0 0 34px;
  padding: 26px 22px;
  background: var(--cream);
  border-radius: 18px;
  text-align: center;
}

.quote p {
  margin: 0;
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}

.quote-divider {
  margin: 14px 0;
}

.quote cite {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--accent);
}

/* Footer */
.footer {
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
}

.footer p {
  margin: 2px 0;
}

.footer-domain {
  font-size: 11.5px;
  opacity: 0.75;
}

@media (max-width: 380px) {
  .wordmark { font-size: 64px; }
  .card-page { padding: 40px 20px 28px; }
}
