/*
Theme Name: Slow Motion Minimal Video
Theme URI: https://example.com/
Author: OpenAI
Description: Minimal one-page WordPress theme with full-screen video background and anchor navigation for Home, Hire, and Contact.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: smmv
*/

:root {
  --bg: #0b0b0b;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.1);
  --text: #f5f5f3;
  --muted: rgba(245,245,243,0.76);
  --line: rgba(255,255,255,0.14);
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 20px 80px rgba(0,0,0,0.28);
  --nav-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.smmv-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.38), rgba(0,0,0,0.12));
}
.smmv-nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.smmv-brand {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.smmv-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.smmv-menu a {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.smmv-menu a:hover,
.smmv-menu a:focus { color: var(--text); }

.smmv-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.smmv-video-wrap,
.smmv-video-wrap video,
.smmv-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.smmv-video-wrap video {
  object-fit: cover;
}
.smmv-video-fallback {
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 30%),
              linear-gradient(135deg, #0d0d0d, #171717 45%, #090909);
}
.smmv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.30), rgba(0,0,0,0.52) 55%, rgba(0,0,0,0.76));
}
.smmv-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--nav-h) + 40px) 24px 72px;
}
.smmv-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
}
.smmv-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.smmv-intro {
  max-width: 700px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  margin-top: 24px;
}
.smmv-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.smmv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  min-height: 48px;
  border: 1px solid var(--line);
  transition: 180ms ease;
}
.smmv-btn:hover { transform: translateY(-1px); }
.smmv-btn-primary {
  background: rgba(255,255,255,0.96);
  color: #0e0e0e;
  border-color: transparent;
}
.smmv-btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.smmv-section {
  scroll-margin-top: calc(var(--nav-h) + 16px);
  padding: 96px 24px;
}
.smmv-section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.smmv-section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.56);
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.smmv-section-title {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}
.smmv-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}
.smmv-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.smmv-richtext p:first-child { margin-top: 0; }
.smmv-richtext p:last-child { margin-bottom: 0; }
.smmv-richtext p, .smmv-richtext li {
  color: var(--muted);
  font-size: 1.04rem;
}
.smmv-contact-list {
  display: grid;
  gap: 14px;
}
.smmv-contact-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.smmv-contact-item:last-child { border-bottom: 0; padding-bottom: 0; }
.smmv-contact-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  margin-bottom: 7px;
}
.smmv-form-wrap .wpcf7,
.smmv-form-wrap form {
  width: 100%;
}
.smmv-footer {
  padding: 28px 24px 44px;
  color: rgba(255,255,255,0.52);
  font-size: 0.92rem;
}
.smmv-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.admin-note {
  background: #fff;
  border-left: 4px solid #111;
  padding: 10px 12px;
  margin: 12px 0;
}

@media (max-width: 860px) {
  .smmv-menu { gap: 16px; }
  .smmv-grid { grid-template-columns: 1fr; }
  .smmv-card { padding: 22px; }
  .smmv-nav { padding: 16px 18px; }
}

@media (max-width: 640px) {
  .smmv-brand { font-size: 0.82rem; letter-spacing: 0.14em; }
  .smmv-menu a { font-size: 0.76rem; letter-spacing: 0.12em; }
  .smmv-section { padding: 78px 18px; }
  .smmv-hero-inner { padding-left: 18px; padding-right: 18px; }
}
