:root {
  --creme: #f8f3eb;
  --sand: #d9cbb6;
  --olive: #6b7d53;
  --taupe: #8d8065;

  --bg: var(--creme);
  --text: #2f2a24;
  --muted: var(--taupe);
  --line: #e6dfd2;
  --accent: var(--olive);
  --shadow: 0 2px 20px rgba(0,0,0,0.06);

  --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Lora', Georgia, serif;
  --font-ui: 'Quicksand', 'Raleway', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background-color: var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(107,125,83,0.08), transparent 60%), linear-gradient(0deg, rgba(248,243,235,0.50), rgba(248,243,235,0.30));
  z-index: -3;
}

.bg-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -2; pointer-events: none; will-change: transform; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.site-header { position: sticky; top: 0; backdrop-filter: saturate(180%) blur(20px); background: rgba(251,247,242,0.7); border-bottom: 1px solid var(--line); z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 600; letter-spacing: -0.02em; }
.nav a { color: var(--text); text-decoration: none; margin-left: 20px; font-size: 14px; }
.nav .cta-link { color: var(--accent); }

.hero { padding: 64px 0; background: transparent; }
.headline { font-size: clamp(40px, 6vw, 64px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; margin: 0 0 8px; font-family: var(--font-heading); }
.intro { text-align: center; max-width: 760px; margin: 0 auto 20px; }
.identity { display: inline-flex; align-items: center; justify-content: center; gap: 12px; }
.identity .headline { margin: 0; }
.avatar { width: 56px; height: 56px; border-radius: 999px; object-fit: cover; border: 2px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.role { font-size: 18px; color: var(--muted); margin-bottom: 8px; font-family: var(--font-body); }
.subhead { display: none; }
.tagline { display: none; }
.actions { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; border-radius: 28px; padding: 12px 18px; font-weight: 600; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn.primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(200,154,91,0.35); }
.btn.ghost { border: 1px solid var(--line); color: var(--text); }
.btn.ghost:hover { background: #f1ebe3; }
.btn.large { padding: 16px 22px; font-size: 17px; }

.section { padding: 72px 0; }
.section.light { background: #f6f1ea; }
.lead { font-size: 18px; color: var(--muted); max-width: 800px; }

.grid.two-col { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.highlight-card { border: 1px solid var(--line); border-radius: 20px; padding: 24px; background: #fffaf4; box-shadow: var(--shadow); }
.badge { display: inline-block; font-size: 12px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; margin-bottom: 12px; }
.list.subtle { list-style: none; padding: 0; margin: 0; }
.list.subtle li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.list.subtle li:last-child { border-bottom: 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.card { background: #fffaf4; border: 1px solid var(--line); border-radius: 20px; padding: 20px; box-shadow: var(--shadow); }
.card h3 { margin: 0 0 8px; letter-spacing: -0.01em; }
.card p { color: var(--muted); }

.link-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr; justify-items: center; gap: 12px; }
.link-item { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border: 1px solid #74783d; background: #74783d; color: #fff; font-weight: 600; border-radius: 16px; padding: 14px 18px; min-width: 220px; max-width: 320px; font-family: var(--font-ui); }
.link-item:hover { background: #666a38; transform: translateY(-1px); box-shadow: var(--shadow); color: #fff; }
.link-item.primary { background: #74783d; color: #fff; border-color: #74783d; }
.link-item.primary:hover { box-shadow: 0 8px 28px rgba(116,120,61,0.35); background: #666a38; }

.socials { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); background: #fbf7f1; color: #74783d; box-shadow: var(--shadow); text-decoration: none; }
.social-link:hover { background: #eef0e9; color: #666a38; transform: translateY(-1px); }
.social-link.youtube svg { display: block; }
.social-link.spotify svg { display: block; }
.social-link.apple svg { display: block; }
.social-link.tiktok svg { display: block; }
.social-link.facebook svg { display: block; }

.logo-slider { margin-top: 28px; border: 1px solid var(--line); border-radius: 16px; background: #fbf7f1; overflow: hidden; padding: 12px 0; }
.logo-track { display: inline-flex; align-items: center; gap: 36px; padding: 0 12px; will-change: transform; animation: logo-scroll 45s linear infinite; }
.logo { height: 44px; width: auto; filter: saturate(0.9) contrast(1.02); }

@keyframes logo-scroll {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.cta { display: none; }
.cta-inner { display: none; }

.site-footer { padding: 28px 0; background: #fbf7f1; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 8px; }
.foot-brand { font-weight: 600; color: var(--text); }
.foot-links { font-size: 14px; line-height: 1.6; }
.foot-links a { color: var(--text); text-decoration: none; }
.foot-links a:hover { color: var(--accent); }
.foot-actions { display: flex; justify-content: center; }
.foot-btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border: 1px solid #74783d; background: #74783d; color: #fff; border-radius: 999px; padding: 10px 14px; font-weight: 600; box-shadow: var(--shadow); }
.foot-btn:hover { background: #666a38; }

@media (max-width: 960px) {
  .grid.two-col { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .header-inner { height: 56px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .intro { text-align: center; }
  .identity { flex-direction: column; gap: 10px; }
  .headline { text-align: center; }
  .role { text-align: center; }
  .lead { text-align: center; }
  .link-list { justify-items: center; }
  .link-item { width: 100%; max-width: 360px; }
  .socials { justify-content: center; }
  .footer-inner { text-align: center; }
  .foot-actions { justify-content: center; }
}