/* ─────────────────────────────────────────
   CatDaddio — styles.css
   ───────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --cream: #f5eed8;
  --burnt: #c9440e;
  --gold:  #e8a920;
  --deep:  #1a0f08;
  --fur:   #8b5e3c;
  --moss:  #3d5a2a;
  --blush: #f0c99c;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── BASE ── */
body {
  background-color: var(--cream);
  color: var(--deep);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='26' font-size='24'%3E🐾%3C/text%3E%3C/svg%3E") 4 4, auto;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-color: var(--deep);
  position: relative;
  overflow: hidden;
}

/* radiating rings */
.hero::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, var(--burnt) 0%, transparent 45%),
    repeating-radial-gradient(circle at center,
      transparent 0px, transparent 38px,
      rgba(232,169,32,0.12) 38px, rgba(232,169,32,0.12) 42px);
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.9; }
  50%       { transform: translate(-50%, -50%) scale(1.06); opacity: 0.6; }
}

/* ── NAV ── */
.nav {
  position: relative; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(232,169,32,0.25);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--blush);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO CENTER ── */
.hero-center {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1.5rem;
}

.cat-emoji {
  font-size: 7rem;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(201,68,14,0.7));
  display: block;
  line-height: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0)    rotate(-3deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--cream);
}

.hero-title em {
  font-style: italic;
  color: var(--burnt);
  -webkit-text-stroke: 1px var(--gold);
}

.hero-sub {
  font-size: 0.8rem;
  color: var(--blush);
  letter-spacing: 0.08em;
  max-width: 440px;
  line-height: 1.8;
  opacity: 0.8;
}

/* ── BUTTONS ── */
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn {
  padding: 0.85rem 2.2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary {
  background: var(--burnt);
  color: var(--cream);
  border-color: var(--burnt);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,68,14,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,238,216,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: relative; z-index: 10;
  text-align: center;
  padding: 2rem;
  color: rgba(245,238,216,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{ opacity:0.3 } 50%{ opacity:1 } }

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-wrap {
  background: var(--burnt);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 2rem;
}

.marquee-track span.dot { color: var(--gold); font-size: 1.1rem; }

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

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--burnt);
  display: block;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4rem;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--deep);
  border: 2px solid var(--deep);
}

.feature-card {
  background: var(--cream);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--burnt);
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}

.feature-card:hover::before { transform: translateY(0); }

.feature-card:hover .feature-icon,
.feature-card:hover .feature-title,
.feature-card:hover .feature-text {
  color: var(--cream);
  position: relative; z-index: 1;
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1.2rem;
  transition: color 0.3s;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  transition: color 0.3s;
  position: relative; z-index: 1;
}

.feature-text {
  font-size: 0.72rem;
  line-height: 1.85;
  color: #5a4030;
  transition: color 0.3s;
  position: relative; z-index: 1;
}

.feature-card:hover .feature-text { color: rgba(245,238,216,0.85); }

/* ══════════════════════════════════════════
   ABOUT STRIP
══════════════════════════════════════════ */
.about-strip {
  background: var(--fur);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}

.about-visual {
  background: var(--deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 10rem;
  position: relative;
  overflow: hidden;
}

.about-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 20px,
    rgba(232,169,32,0.06) 20px, rgba(232,169,32,0.06) 21px
  );
}

.about-visual-cat {
  animation: sway 5s ease-in-out infinite;
  z-index: 1;
  filter: drop-shadow(0 0 60px rgba(201,68,14,0.6));
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg) scale(1);    }
  50%       { transform: rotate(5deg)  scale(1.05); }
}

.about-content {
  padding: 4rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.5rem;
  color: var(--cream);
}

.about-content .section-label { color: var(--gold); }

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
}

.about-title em { font-style: italic; color: var(--gold); }

.about-body {
  font-size: 0.75rem;
  line-height: 1.95;
  opacity: 0.85;
  max-width: 420px;
}

.stat-row {
  display: flex; gap: 2.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials {
  padding: 7rem 3rem;
  background: var(--deep);
  color: var(--cream);
}

.testimonials-inner { max-width: 1100px; margin: 0 auto; }

.testimonials .section-label { color: var(--gold); }
.testimonials .section-title { color: var(--cream); margin-bottom: 3.5rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  border: 1px solid rgba(232,169,32,0.2);
  padding: 2rem 2rem 1.6rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--burnt);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testi-text {
  font-size: 0.75rem;
  line-height: 1.9;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.testi-author {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testi-handle {
  opacity: 0.5;
  display: block;
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.cta-section::before {
  content: '😺';
  position: absolute;
  font-size: 30rem;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-section .section-label { text-align: center; display: block; }

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
}

.cta-title em { font-style: italic; color: var(--burnt); }

.cta-sub {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #5a4030;
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--deep);
  color: var(--blush);
  padding: 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
  border-top: 2px solid var(--burnt);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
}

.footer-copy { font-size: 0.65rem; letter-spacing: 0.1em; opacity: 0.4; }

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  color: var(--blush);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover { opacity: 1; color: var(--gold); }

/* ══════════════════════════════════════════
   SCROLL FADE-IN
══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .features, .testimonials, .cta-section { padding: 4rem 1.5rem; }
  .about-strip { grid-template-columns: 1fr; }
  .about-visual { min-height: 260px; font-size: 7rem; }
  .about-content { padding: 3rem 1.5rem; }
  footer { flex-direction: column; text-align: center; }
}
