/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'TTNormsPro';
  src: url('../fonts/TTNormsPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TTNormsPro';
  src: url('../fonts/TTNormsPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TTNormsPro';
  src: url('../fonts/TTNormsPro-DemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #e03d9e;
  --bg: #111111;
  --white: #ffffff;
  --white-dim: rgba(255,255,255,0.55);
  --font: 'TTNormsPro', 'Inter', sans-serif;
}

html, body {
  width: 100%;
  background: var(--bg);
  font-family: var(--font);
  font-weight: 300;
  color: var(--white);
}

/* ============================================================
   FOOTER MAIN
   ============================================================ */
.site-footer {
  background: var(--bg);
  padding: 60px 60px 0;
}

/* 4-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* ── Column 1: Brand ── */
.footer-brand {}

.footer-logo {
  display: block;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 72px;
  display: block;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.social-icon:hover {
  opacity: 0.8;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--pink);
  line-height: 1.45;
  text-transform: lowercase;
  max-width: 220px;
}

/* ── Columns 2–3: Nav ── */
.footer-nav-col {}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nav-col a {
  display: block;
  font-size: 17px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  padding: 7px 0;
  line-height: 1.3;
  transition: color 0.2s;
}

.footer-nav-col a:hover {
  color: var(--pink);
}

/* ── Column 4: Contacts ── */
.footer-contacts {}

.footer-contacts p {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 14px;
}

.footer-contacts a {
  color: var(--pink);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-contacts a:hover {
  opacity: 0.8;
}

.footer-hours {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
}

/* ============================================================
   BOTTOM BAR
   ============================================================ */
.footer-bottom {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 0;
}

.footer-company-details {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.6;
}

.footer-company-details strong {
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   COPYRIGHT
   ============================================================ */
.footer-copy {
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: var(--white-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-footer {
    padding: 48px 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo img {
    height: 60px;
  }
}
