
:root {
  --pink:       #e6007e;
  --blue:       #009fe3;
  --teal:       #27cfc3;
  --grad:       linear-gradient(135deg, #e6007e 0%, #009fe3 100%);
  --dark:       #0d0d0d;
  --dark-600:   #1a1a1a;
  --dark-400:   #2e2e2e;
  --grey-500:   #676767;
  --grey-400:   #888888;
  --grey-100:   #e0e0e0;
  --white:      #ffffff;

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --grid-max: 2000px;
  --grid-margin: clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--grey-100);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER STRIP
   ═══════════════════════════════════════════════════════════ */

.newsletter-strip {
  background: var(--grad);
  position: relative;
  overflow: hidden;
}

.newsletter-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) var(--grid-margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 48px);
  position: relative;
  z-index: 1;
}

.newsletter-text {
  flex: 1;
  min-width: 0;
}

.newsletter-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.newsletter-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  max-width: 420px;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: background 0.25s ease;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
  background: rgba(255,255,255,0.25);
}

.newsletter-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 0 4px 4px 0;
  background: var(--white);
  color: var(--pink);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s var(--ease-out);
}

.newsletter-btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateX(2px);
}

.newsletter-privacy {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  text-align: right;
}

/* Newsletter responsive */
@media (max-width: 800px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form { max-width: 100%; }
  .newsletter-privacy { text-align: center; }
}

@media (max-width: 400px) {
  .newsletter-form { flex-direction: column; gap: 8px; }
  .newsletter-input { border-radius: 4px; }
  .newsletter-btn { border-radius: 4px; }
}

/* ═══════════════════════════════════════════════════════════
   MAIN FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer-main {
  background: #111111;
  padding: clamp(48px, 6vw, 80px) var(--grid-margin);
}

.footer-grid {
  max-width: var(--grid-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}

/* ─── Brand column ─────────────────────────────────────── */

.footer-brand-logo {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-brand-mission {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--grey-400);
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--grey-400);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease-out);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social-link:hover {
  background: rgba(230, 0, 126, 0.15);
  color: var(--white);
  box-shadow: 0 0 16px rgba(230, 0, 126, 0.25), 0 0 32px rgba(0, 159, 227, 0.15);
  transform: translateY(-2px);
}

/* ─── Link columns ─────────────────────────────────────── */

.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-400);
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

/* ─── Contact column extras ────────────────────────────── */

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-400);
  line-height: 1.5;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   BOTTOM BAR
   ═══════════════════════════════════════════════════════════ */

.footer-bottom {
  background: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px var(--grid-margin);
}

.footer-bottom-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom-left,
.footer-bottom-right {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-500);
}

.footer-bottom-right a {
  color: var(--grey-500);
  transition: color 0.25s ease;
}

.footer-bottom-right a:hover {
  color: var(--grey-100);
}

.footer-bottom-sep {
  margin: 0 8px;
  opacity: 0.4;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.footer-badge svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════════════════════
   BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1800px) {
  :root { --grid-margin: clamp(24px, 4.5vw, 72px); }
}

@media (max-width: 1600px) {
  .footer-grid { gap: clamp(28px, 3.5vw, 52px); }
}

@media (max-width: 1400px) {
  .footer-grid { gap: clamp(24px, 3vw, 44px); }
  .footer-brand-logo { width: 100px; }
}

@media (max-width: 1200px) {
  :root { --grid-margin: clamp(20px, 4vw, 56px); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
  }
}

@media (max-width: 1000px) {
  :root { --grid-margin: clamp(20px, 3.5vw, 40px); }
  .footer-grid { gap: 36px 40px; }
  .footer-bottom-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
  .footer-badges { order: 3; width: 100%; justify-content: center; margin-top: 8px; }
}

@media (max-width: 800px) {
  :root { --grid-margin: 24px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-brand-logo { margin-left: auto; margin-right: auto; }
  .footer-brand-mission { margin-left: auto; margin-right: auto; max-width: 360px; }
  .footer-social { justify-content: center; }

  .footer-contact-item { justify-content: center; }

  .footer-bottom-inner { flex-direction: column; gap: 16px; }
  .footer-badges { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  :root { --grid-margin: 20px; }

  .footer-badges { gap: 12px; }
  .footer-badge { font-size: 9px; }
}

@media (max-width: 400px) {
  :root { --grid-margin: 16px; }
  .footer-newsletter-text { font-size: 15px; }
  .footer-badges { gap: 8px; }
}

