/* ═══════════════════════════════
   CLOSING CTA SECTION
═══════════════════════════════ */
.closing {
  background: #111111;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.closing-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 8px;
}

.btn-chat {
  display: block;
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.btn-chat:hover { background: #ffffff; color: #111111; }

.btn-choose {
  display: block;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  background: transparent;
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}

.btn-choose:hover { border-color: #ffffff; color: #ffffff; }

/* ── ТВОРІТЬ ── */
.tvorit {
  background: #111111;
  padding: 32px 20px 0;
}

.tvorit-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(55px, 10vw, 120px);
  letter-spacing: -1.6px;
  line-height: 0.9;
  color: #ffffff;
  margin-bottom: 16px;
}

.tvorit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.tvorit-photo {
  aspect-ratio: 1;
  background: #333;
  background-size: cover;
  background-position: center;
}

.tvorit-photo:nth-child(1) { background-image: url('/images/layered/BasementScissorsPhoto.png'); }
.tvorit-photo:nth-child(2) { background-image: url('/images/layered/BasementScenePhoto.png'); }
.tvorit-photo:nth-child(3) { background-image: url('/images/layered/BasementScenePhoto2.png'); }
.tvorit-photo:nth-child(4) { background-image: url('/images/layered/BasementAlonaPhoto.png'); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: #111111;
  padding: 48px 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.footerlogophoto {
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.footer-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #ffffff; }

.footer-secondary {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.footer-secondary a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}

.footer-secondary a:hover { color: rgba(255,255,255,0.7); }

.footer-location {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

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

.footer-social {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.2s;
}

.footer-social:hover { border-color: #ffffff; }
.footer-social svg { width: 20px; height: 20px; fill: #ffffff; }

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  text-align: center;
}

/* ── Tablet ── */
@media (min-width: 768px) {
  .closing {
    padding: 60px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .closing-text { margin-bottom: 0; text-align: left; }
  .btn-chat, .btn-choose { display: inline-block; white-space: nowrap; }

  .tvorit { padding: 48px 60px 0; }
  .tvorit-grid { grid-template-columns: repeat(4, 1fr); }

  .footer {
    padding: 60px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    gap: 48px;
    flex-wrap: wrap;
  }
  .footer-logo { align-items: flex-start; }
  .footer-nav, .footer-secondary { width: auto; }
  .footer-nav a, .footer-secondary a { border: none; padding: 6px 0; }
  .footer-copy { border-top: 1px solid rgba(255,255,255,0.06); text-align: left; }
}

/* ── Mid ── */
@media (min-width: 769px) and (max-width: 1199px) {
  .closing { padding: 60px 72px; }
  .tvorit { padding: 56px 60px 0; }
  .footer { padding: 60px 72px; }
}

/* ── 800–900 ── */
@media (min-width: 800px) and (max-width: 900px) {
  .closing { padding: 56px 48px; }
  .tvorit { padding: 48px 48px 0; }
  .footer { padding: 56px 48px; }
}

/* ── 1000–1199 (iPad landscape) ── */
@media (min-width: 1000px) and (max-width: 1199px) {
  .closing { padding: 64px 80px; }
  .tvorit { padding: 56px 72px 0; }
  .footer { padding: 64px 80px; }
}

/* ── Desktop ── */
@media (min-width: 1200px) {
  .closing { padding: 80px; gap: 32px; }

  .tvorit { padding: 64px 80px 0; }

  .footer { padding: 80px; gap: 64px; }
  .footerlogophoto { height: 72px; }
  .footer-nav a { font-size: 16px; }
}

/* ── Small desktop ── */
@media (min-width: 1200px) and (max-width: 1399px) {
  .closing { padding: 72px 60px; }
  .tvorit { padding: 56px 60px 0; }
  .footer { padding: 72px 60px; }
}
