/* ── Farsley Scaffolding — Coming Soon Page ──
   Theme: Red (#C41E3A) & Gold (#D4AF37) — Iron Man inspired */

:root {
  --red: #C41E3A;
  --red-dark: #9B1830;
  --red-light: #E63950;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dim: #B8972E;
  --bg: #000000;
  --bg-elevated: #141414;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --text: #F0F0F0;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: #1E1E1E;
  --border-light: #2A2A2A;
  --radius: 14px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #000;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Container ── */
.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

/* ── Header ── */
.header {
  text-align: center;
  padding: 40px 0 8px;
}

.site-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-img {
  height: 72px;
  width: 72px;
  object-fit: contain;
  border-radius: 12px;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.phone-btn:hover { background: var(--red-light); }
.phone-btn:active { transform: scale(0.97); }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 24px 0 56px;
}

.hero-video-wrap {
  position: relative;
  width: min(100vw, 920px);
  max-width: calc(100vw - 24px);
  margin: 0 auto 28px;
  border-radius: 0;
  overflow: hidden;
  background: #000;
}

.hero-video-wrap::after {
  content: "";
  position: absolute;
  right: 1.5%;
  bottom: 1.5%;
  width: 17%;
  height: 8%;
  background: #000;
  z-index: 2;
  pointer-events: none;
}

.hero-video {
  display: block;
  width: 100%;
  pointer-events: none;
  -webkit-media-controls: none;
}

.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  border: 2px solid var(--gold);
  color: #1a1a1a;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.pulse {
  width: 12px;
  height: 12px;
  background: #1a1a1a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(26, 26, 26, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(26, 26, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 26, 26, 0); }
}

.hero h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.hero-desc strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--font);
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  box-shadow: 0 6px 28px rgba(196, 30, 58, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
}

.btn-full {
  width: 100%;
  padding: 15px 28px;
  font-size: 1rem;
}

/* ── Facebook Follow ── */
.facebook-follow {
  display: flex;
  justify-content: center;
  padding: 0 0 48px;
}

.facebook-follow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.18), rgba(212, 175, 55, 0.08));
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.facebook-follow-link:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(24, 119, 242, 0.18), 0 0 22px rgba(212, 175, 55, 0.12);
  transform: translateY(-1px);
}

.facebook-follow-link:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.35);
  outline-offset: 3px;
}

.facebook-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1877F2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

/* ── Services ── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px 24px;
  text-align: center;
  transition: all 0.25s;
}

.service-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Trust signals ── */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.trust-item {
  text-align: center;
  padding: 20px 8px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.trust-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.trust-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Contact ── */
.contact {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  margin-bottom: 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.contact-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.required { color: var(--red); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.form-group select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-dim) 50%), linear-gradient(135deg, var(--gold-dim) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-group select option {
  background: var(--bg);
  color: var(--text);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-error {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(196, 30, 58, 0.45);
  border-radius: 10px;
  background: rgba(196, 30, 58, 0.12);
  color: #ffb3bf;
  font-size: 0.88rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.form-note a {
  color: var(--gold);
  text-decoration: none;
}

.form-note a:hover { text-decoration: underline; }

/* Form success */
.form-success {
  text-align: center;
  padding: 32px 0;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg);
  margin-bottom: 16px;
  font-weight: 700;
}

.form-success h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ── Footer ── */
.footer {
  padding: 36px 0 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 72px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.footer-brand p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-details {
  text-align: right;
}

.footer-details p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-links a:hover { text-decoration: underline; }

.footer-copy {
  text-align: center;
  font-size: 0.72rem;
  color: #3a3a3a;
  padding-top: 24px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .container { padding: 0 16px 32px; }

  .header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px 0 24px;
  }

  .logo-img { height: 64px; width: 64px; }

  .hero { padding: 16px 0 40px; }
  .hero h2 { font-size: 1.9rem; }
  .hero-video-wrap {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    margin-bottom: 22px;
  }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }

  .services { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  .form-row { grid-template-columns: 1fr; }
  .contact { padding: 28px 20px; }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-details { text-align: center; }
  .footer-links { justify-content: center; }
}
