/* ============================================================
   MIGHTY SHINE — Free Wash Landing Page
   No nav. Focused conversion layout.
   ============================================================ */

/* Dark arcade-style background */
.freewash-body {
  background: var(--dark-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Pixel grid background */
.freewash__bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,171,226,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,171,226,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Main layout */
.freewash {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 40px;
  position: relative;
  z-index: 1;
}

.freewash__container {
  width: 100%;
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Logo */
.freewash__logo-link {
  display: inline-block;
  margin-bottom: 8px;
}

.freewash__logo {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(41,171,226,0.35));
}

/* Headline */
.freewash__headline {
  font-size: clamp(1.2rem, 5vw, 2.2rem);
  line-height: 1.6;
  color: var(--white);
  text-shadow: 4px 4px 0 rgba(0,0,0,0.55);
}

.freewash__headline--gold {
  color: var(--gold);
}

/* Subhead */
.freewash__subhead {
  font-size: 1rem;
  color: rgba(255, 248, 231, 0.75);
  line-height: 1.75;
  max-width: 480px;
}

/* Embed container */
.freewash__embed {
  width: 100%;
  background: var(--white);
  border: 4px solid var(--gold);
  box-shadow: 8px 8px 0 var(--navy);
  padding: 40px 32px;
  margin: 8px 0;
}

/* Placeholder shown until real embed code is inserted */
.freewash__embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border: 3px dashed rgba(27,20,100,0.2);
}

.freewash__embed-placeholder__label {
  font-size: 0.52rem;
  color: var(--navy);
  letter-spacing: 0.1em;
}

.freewash__embed-placeholder__note {
  font-size: 0.95rem;
  color: #aaa;
}

/* Back link */
.freewash__back {
  font-size: 0.42rem;
  color: rgba(255,248,231,0.4);
  letter-spacing: 0.08em;
  transition: color 0.15s;
  margin-top: 8px;
}

.freewash__back:hover {
  color: var(--gold);
}

/* Footer */
.freewash__footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.freewash__footer .pixel-text {
  font-size: 0.36rem;
  color: rgba(255,248,231,0.22);
  letter-spacing: 0.04em;
  line-height: 2;
}

.freewash__footer a {
  color: rgba(255,248,231,0.38);
  transition: color 0.15s;
}

.freewash__footer a:hover {
  color: var(--gold);
}


/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  .freewash {
    padding: 40px 16px 32px;
  }

  .freewash__logo {
    height: 80px;
  }

  .freewash__embed {
    padding: 28px 20px;
    box-shadow: 4px 4px 0 var(--navy);
  }
}
