@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --black: #0F0F0D;
  --red: #C13B2A;
  --red-light: #D94F3A;
  --grey: #6B6760;
  --grey-light: #A8A39C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
body.has-cursor { cursor: none; }

/* Cursor */
.cursor {
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--black);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -1px;
  color: var(--black);
  text-decoration: none;
  font-style: italic;
}
.nav-logo span { color: var(--red); font-style: normal; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

.nav-cta {
  background: var(--black) !important;
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red) !important; }

/* BUTTONS */
.btn-primary {
  background: var(--black);
  color: var(--cream);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--red); transform: translateY(-1px); }
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--red); border-color: var(--red); }

/* SECTION HELPERS */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 0;
  width: 40px;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  background: var(--red);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  padding: 0 32px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 32px;
}
.marquee-item::after { content: '✦'; font-size: 10px; opacity: 0.6; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FOOTER — unified for all pages */
footer, footer.footer {
  background: var(--black);
  color: var(--cream);
  padding: 60px 48px 0;
  display: flex;
  flex-direction: column;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
/* Legacy compat — direct children that aren't footer-cols or footer-bottom */
footer > div:not(.footer-cols):not(.footer-bottom):not(.footer-brand):not(.footer-col):not([class]) {
  display: none;
}
.footer-brand .nav-logo, .footer-logo {
  color: var(--cream) !important;
  margin-bottom: 16px;
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -1px;
  text-decoration: none;
  font-style: italic;
}
.footer-logo span, .footer-brand .nav-logo span { color: var(--red); font-style: normal; }
.footer-desc, .footer-tagline { font-size: 14px; color: var(--grey-light); line-height: 1.7; }
.footer-col-title, .footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--grey-light); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--grey-light); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(245,240,232,0.08);
  margin-top: auto;
}
.footer-bottom p { font-size: 12px; color: var(--grey-light); font-family: 'DM Mono', monospace; }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* LOYALTY CARD */
.loyalty-card {
  background: var(--black);
  border-radius: 16px;
  padding: 32px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}
.loyalty-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.15;
}
.card-business {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 8px;
}
.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
}
.stamp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.stamp {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,240,232,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.stamp.filled { background: var(--red); border-color: var(--red); }
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--grey-light);
  font-family: 'DM Mono', monospace;
}
.card-badge {
  background: var(--red);
  color: white;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  footer { padding: 48px 24px 0; } .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 20px 24px; }
}
