/* ============================
   SHEKWOLO — SHARED STYLES
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Mono:wght@300;400&display=swap');

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

:root {
  --ink:    #0e0d0b;
  --ink2:   #131210;
  --paper:  #f2ede6;
  --dust:   #b8a99a;
  --fade:   #d6cfc5;
  --rust:   #c45a2a;
  --rust2:  #8b3a18;
  --line:   rgba(255,255,255,0.08);
  --display: 'Cormorant Garamond', serif;
  --mono:    'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  cursor: none;
  overflow-x: hidden;
  min-height: 100vh;
}

.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--rust);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border 0.3s ease;
  will-change: left, top;
}
.cursor.big {
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--rust);
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 56px;
  z-index: 200;
}
nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,13,11,0.95) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.nav-logo {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dust);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rust);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }

.page-banner {
  padding: 160px 56px 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-banner .ghost-word {
  position: absolute;
  font-family: var(--display);
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  right: 40px; bottom: -20px;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.page-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--rust); }
.page-title {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.02em;
}
.page-title em { font-style: italic; color: var(--dust); }

.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after { content: ''; flex: 1; max-width: 56px; height: 1px; background: var(--rust); }

/* ── Footer with social icons ── */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p { font-size: 10px; color: var(--dust); letter-spacing: 0.1em; }
.social-links { display: flex; gap: 12px; align-items: center; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--dust);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.social-links a:hover { color: var(--paper); border-color: var(--rust); background: rgba(196,90,42,0.1); }
.social-links a svg { width: 15px; height: 15px; fill: currentColor; }

.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  display: flex;
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-item {
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  color: var(--dust);
  padding: 0 56px;
  border-right: 1px solid var(--line);
}
.marquee-item span {
  color: var(--rust);
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  margin-right: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.btn {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--paper);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn:hover { background: var(--paper); color: var(--ink); }
.btn-rust { border-color: var(--rust); color: var(--rust); }
.btn-rust:hover { background: var(--rust); color: var(--paper); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }