*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #FAF6EE;
  --dark: #1A1208;
  --gold: #C9932A;
  --gold-light: #F0C96B;
  --brown: #6B4A1E;
  --text: #2C1F0A;
  --muted: #7A6A52;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header */
header {
  background: var(--dark);
  color: var(--cream);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '🎲';
  font-size: 160px;
  position: absolute;
  top: -30px;
  left: -30px;
  opacity: 0.05;
  line-height: 1;
}

header::after {
  content: '🃏';
  font-size: 140px;
  position: absolute;
  bottom: -20px;
  right: -10px;
  opacity: 0.06;
  line-height: 1;
}

.logo-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.75rem;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

header .subtitle {
  font-size: 1rem;
  color: #c4b89a;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* Social buttons */
.social-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 99px;
  border: 1.5px solid rgba(201, 147, 42, 0.5);
  background: rgba(201, 147, 42, 0.12);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.social-btn:hover {
  background: rgba(201, 147, 42, 0.25);
  border-color: var(--gold);
}

/* Main content */
main {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  margin: 2.5rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(107, 74, 30, 0.2);
}

/* About card */
.about-card {
  background: var(--dark);
  color: var(--cream);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
}

.about-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #d9cebb;
}

.about-card p + p {
  margin-top: 0.75rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tag {
  background: rgba(201, 147, 42, 0.2);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
}

/* Link cards */
.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border: 1.5px solid rgba(107, 74, 30, 0.12);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.link-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 147, 42, 0.12);
  transform: translateY(-1px);
}

.link-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.link-icon.helloasso { background: #f0ffe8; }
.link-icon.linktree  { background: #e8fff0; }
.link-icon.instagram { background: #fff0f8; }
.link-icon.facebook  { background: #eef4ff; }
.link-icon.mail      { background: #fff8e8; }

.link-label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.link-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1px;
}

.link-arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid rgba(107, 74, 30, 0.1);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header { animation: fadeUp 0.5s ease both; }
main   { animation: fadeUp 0.5s 0.1s ease both; }