:root {
  --wine: #6B0000;
  --wine-shadow: #5A0000;
  --wine-bright: #A90101;
  --cream: #FDF8E5;
  --cream-elev: #FFFBF0;
  --ink: #2A1410;
  --muted: #6B5A55;
  --divider: #E8DDC4;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.marquee {
  background: var(--wine);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--wine-shadow);
  border-top: 1px solid var(--wine-shadow);
}

.track {
  display: inline-block;
  padding: 14px 0;
  animation: scroll 40s linear infinite;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(20px, 3.6vw, 30px);
  letter-spacing: 0.06em;
}

.track span { padding: 0 24px; }
.track .sep { color: rgba(253, 248, 229, 0.5); padding: 0 8px; }

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

@media (prefers-reduced-motion: reduce) {
  .track {
    animation: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 12px;
    font-size: clamp(14px, 2.4vw, 18px);
  }
  .track span { padding: 4px 12px; }
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 28px 64px;
}

header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

header img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--wine);
  flex-shrink: 0;
}

.eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--wine);
  line-height: 1.05;
}

.tagline {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 720px;
  color: var(--ink);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 10px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--wine);
  background: var(--cream-elev);
  transition: background 0.15s ease, transform 0.08s ease;
}

.pill:hover { background: rgba(107, 0, 0, 0.06); transform: translateY(-1px); }

.pill-tag {
  background: var(--wine);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill.primary { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.pill.primary:hover { background: var(--wine-shadow); }
.pill.primary .pill-tag { background: var(--cream); color: var(--wine); }

.bank-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px dashed var(--wine);
  border-radius: 6px;
  background: var(--cream-elev);
  font-size: 14px;
  margin-bottom: 28px;
}

.bank-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
}

.bank-row code {
  font-family: ui-monospace, Menlo, monospace;
  background: var(--wine);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 13px;
  margin-left: auto;
}

footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  font-size: 13px;
  color: var(--muted);
}

footer .footer-links a {
  color: var(--muted);
  text-decoration: none;
}

footer .footer-links a:hover { color: var(--wine); }

@media (max-width: 600px) {
  header { flex-direction: column; align-items: flex-start; }
  .bank-row code { margin-left: 0; }
}
