* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* Background video */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.02);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 2;
}

/* Center logo */
.logo {
  position: fixed;
  top: 50%;
  left: 50%;

  /* ✅ Responsive + safe on iPhone */
  width: clamp(240px, 62vw, 780px);

  /* ✅ Keep centered */
  transform: translate(-50%, -50%);

  z-index: 3;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,0.35));
}

/* Footer */
.footer {
  position: fixed;
  bottom: 22px;
  left: 0;
  right: 0;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 4;
}

/* Contact & Instagram “same look”: no background */
.footer-link {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: clamp(16px, 2.0vw, 21px);
  letter-spacing: 0.06em;
  background: transparent;   /* IMPORTANT */
  border: 0;                /* IMPORTANT */
  padding: 0;               /* IMPORTANT */
  line-height: 1;
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-link:focus-visible {
  outline: 2px solid rgba(255,255,255,0.35);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  background: rgba(0,0,0,0.72);
}

.modal.is-open { display: block; }

.modal-content {
  width: min(520px, 92vw);
  margin: 8vh auto;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.55);
}

.modal-header {
  background: #111;
  padding: 14px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.modal-header h2 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

.icon-close {
  position: absolute;
  right: 12px;
  top: 8px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 26px;
  cursor: pointer;
}

.icon-close:hover { color: #fff; }

.contact-form {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #2b2b2b;
  border: 1px solid #444;
  color: #fff;
  padding: 12px 12px;
  border-radius: 6px;
  font-size: clamp(16px, 2.0vw, 21px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

.contact-form textarea {
  min-height: 240px;
  resize: vertical;
}

.actions {
  display: flex;
  justify-content: space-between; /* like the screenshot: Cancel left, Send right */
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.btn {
  padding: 10px 18px;
  border-radius: 18px;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.btn-cancel {
  background: #3b3b3b;
  color: rgba(255,255,255,0.92);
}

.btn-send {
  background: #eaeaea;
  color: #000;
}

.btn:active { transform: translateY(1px); }

.status {
  min-height: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* Honeypot hidden */
.hp { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }

/* Mobile tweaks */
@media (max-width: 600px) {
  .logo { width: 75vw; }
  .footer { padding: 0 18px; bottom: 18px; }
}