/* ─── Palette ──────────────────────────────────────────────
   Wolf pelt:   deep charcoal, ash grey, slate
   Sheep fur:   warm ivory, cream, soft ecru
   Accents:     amber eye-glow, blood-berry red, pale sage
───────────────────────────────────────────────────────────── */

:root {
  --wolf-shadow:   #1a1714;
  --wolf-dark:     #2e2b27;
  --wolf-mid:      #4a4540;
  --wolf-grey:     #6e6760;
  --wolf-ash:      #9c948a;

  --sheep-cream:   #f2ece0;
  --sheep-warm:    #e8ddc8;
  --sheep-ecru:    #d4c9b2;
  --sheep-nose:    #c4a08a;

  --eye-glow:      #c8871a;
  --eye-hot:       #e6a030;
  --blood-berry:   #7a2e22;
  --sage:          #8a9a7c;

  --font-display:  'Cinzel', serif;
  --font-serif:    'Cormorant Garamond', serif;
  --font-italic:   'Crimson Pro', serif;
}

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

html, body {
  height: 100%;
}

body {
  background-color: var(--wolf-shadow);
  color: var(--sheep-cream);
  font-family: var(--font-serif);
  overflow: hidden;
  position: relative;
  cursor: crosshair;
}

/* ─── Grain & Texture ─────────────────────────────── */

.grain-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
  z-index: 10;
}

.fur-texture {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, var(--wolf-dark) 0%, var(--wolf-shadow) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Header ─────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  border-bottom: 1px solid rgba(242, 236, 224, 0.06);
}

.studio-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--wolf-ash);
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wolf-ash);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--eye-glow);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--sheep-cream);
}

nav a:hover::after {
  width: 100%;
}

/* ─── Hero ─────────────────────────────────────── */

.hero {
  position: relative;
  z-index: 5;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Wolf Eyes ─────────────────────────────────── */

.eye {
  position: absolute;
  top: 28%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--eye-glow);
  box-shadow:
    0 0 8px 2px var(--eye-glow),
    0 0 30px 8px rgba(200, 135, 26, 0.25),
    0 0 60px 20px rgba(200, 135, 26, 0.08);
  animation: eye-pulse 3.5s ease-in-out infinite;
}

.eye--left  { left:  calc(50% - 22px); }
.eye--right { left:  calc(50% + 12px); }

@keyframes eye-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.15); box-shadow: 0 0 12px 4px var(--eye-hot), 0 0 50px 14px rgba(230,160,48,0.3); }
}

/* ─── Center Block ─────────────────────────────── */

.center-block {
  text-align: center;
  position: relative;
  animation: reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pre-title {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--wolf-ash);
  margin-bottom: 2rem;
  animation: reveal 1.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  line-height: 1;
  user-select: none;
}

.word {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.word.undercover {
  font-size: clamp(2.8rem, 8vw, 7rem);
  color: var(--wolf-ash);
  animation: reveal 1.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: color 0.4s ease;
}

.word.sheep {
  font-size: clamp(3.4rem, 10vw, 9rem);
  color: var(--sheep-cream);
  animation: reveal 1.4s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: color 0.4s ease;
}

.wordmark:hover .word.undercover { color: var(--wolf-mid); }
.wordmark:hover .word.sheep      { color: var(--eye-hot);  }

.divider-line {
  display: block;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wolf-grey) 30%, var(--wolf-grey) 70%, transparent);
  margin: 0.4em auto;
  animation: reveal 1.4s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.tagline {
  margin-top: 1.8rem;
  font-family: var(--font-italic);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--sheep-ecru);
  letter-spacing: 0.06em;
  opacity: 0.7;
  animation: reveal 1.4s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ─── Decorative Scatter Elements ───────────────── */

.paw-print {
  position: absolute;
  font-size: 0.6rem;
  color: var(--wolf-mid);
  opacity: 0.35;
  pointer-events: none;
}

.paw--a { bottom: 22%; left:  18%; transform: rotate(-22deg); }
.paw--b { top: 35%;    right: 14%; transform: rotate(15deg);  }

.wool-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--sheep-ecru);
  opacity: 0.07;
  pointer-events: none;
}

.dot--1 { width: 180px; height: 180px; bottom: 10%; left: 6%;  }
.dot--2 { width: 110px; height: 110px; top: 15%;    right: 8%; }
.dot--3 { width: 60px;  height: 60px;  top: 60%;    right: 22%; opacity: 0.04; }

/* ─── Footer ─────────────────────────────────────── */

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  border-top: 1px solid rgba(242, 236, 224, 0.06);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--wolf-mid);
  text-transform: uppercase;
}

.footer-glyph {
  color: var(--eye-glow);
  font-size: 0.7rem;
  opacity: 0.6;
  animation: glyph-spin 8s linear infinite;
}

@keyframes glyph-spin {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}
