/* MOVE MEDIA — global stylesheet */

:root {
  --bg: #0b0c10;
  --bg-soft: #11131a;
  --surface: #ffffff;
  --surface-soft: #f6f7fb;
  --text: #16181f;
  --text-muted: #5b6373;
  --text-invert: #f5f6f8;
  --brand: #ff5a3c;
  --brand-deep: #d6402a;
  --brand-soft: #ffece6;
  --accent: #2b6cff;
  --accent-soft: #e6efff;
  --border: #e5e7ee;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 17, 26, 0.06), 0 2px 6px rgba(15, 17, 26, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 17, 26, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 17, 26, 0.18);
  --container: 1140px;
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--brand-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--brand); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.005em; }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; color: var(--text); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -40px; left: 12px;
  background: var(--brand);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--brand); }
.brand-mark { color: var(--brand); display: inline-flex; }
.brand-text {
  display: inline-flex;
  gap: 4px;
  font-size: 1.05rem;
}
.brand-text strong { font-weight: 800; }
.brand-text span { color: var(--text-muted); font-weight: 500; }

.primary-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.primary-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--brand); }
.primary-nav a.active { border-bottom-color: var(--brand); color: var(--brand); }
.primary-nav a.cta {
  background: var(--text);
  color: white;
  border-radius: 999px;
  padding: 9px 18px;
  border: 0;
}
.primary-nav a.cta:hover { background: var(--brand); }
.primary-nav a.cta.active { background: var(--brand); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 22px; height: 2px;
  margin: 4px 0;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .primary-nav {
    position: absolute;
    inset: 72px 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 6px;
  }
  .primary-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .primary-nav a.cta { display: inline-block; width: max-content; margin-top: 10px; }
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, var(--brand-soft), transparent 60%),
              radial-gradient(ellipse at bottom left, var(--accent-soft), transparent 55%),
              var(--surface);
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 14px;
}
.lead {
  font-size: 1.18rem;
  color: var(--text-muted);
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--text);
  color: white;
}
.btn-primary:hover { background: var(--brand); color: white; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--text); color: var(--brand); }
.btn-light {
  background: white;
  color: var(--text);
}
.btn-light:hover { background: var(--brand-soft); color: var(--brand-deep); }

/* Hero art */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-left: auto;
}
.art-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
}
.blob-1 { width: 70%; height: 70%; top: -8%; left: -10%; background: var(--brand-soft); }
.blob-2 { width: 60%; height: 60%; bottom: -8%; right: -8%; background: var(--accent-soft); }
.blob-3 { width: 30%; height: 30%; top: 30%; right: 18%; background: #ffe1b3; }
.art-card {
  position: absolute;
  inset: 12% 8%;
  background: var(--bg);
  color: var(--text-invert);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.art-card .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}
.art-card .dot:nth-child(1) { background: #ff5f56; }
.art-card .dot:nth-child(2) { background: #ffbd2e; }
.art-card .dot:nth-child(3) { background: #27c93f; }
.art-headline { color: var(--brand); margin-top: 12px; font-weight: 600; }
.art-line { margin: 0; color: #cdd1dd; }

@media (max-width: 820px) {
  .hero { padding: 48px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { margin: 0; }
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--surface-soft); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head .eyebrow { color: var(--accent); }
.center { text-align: center; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-icon {
  font-size: 1.6rem;
  color: var(--brand);
  margin-bottom: 10px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

.stats {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 16px;
}
.stats li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.stats strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--brand-deep);
  margin-bottom: 4px;
}
.stats span { color: var(--text-muted); }

/* About */
.value-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 12px;
}
.value-list li {
  padding: 14px 18px;
  background: var(--surface);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.steps li {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brand);
  margin-bottom: 8px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
}
.service ul li { margin-bottom: 4px; }

/* Page hero */
.page-hero {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { max-width: 22ch; }
.page-hero .lead { max-width: 64ch; }

/* CTA band */
.cta-band {
  background: var(--bg);
  color: var(--text-invert);
  padding: 64px 0;
}
.cta-band h2 { color: var(--text-invert); }
.cta-inner { text-align: center; }
.cta-inner p { color: #c9cdd9; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--surface-soft);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.15);
}
.contact-form .hp-field {
  position: absolute;
  left: -9999px;
}

.alert {
  padding: 18px 22px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.alert-success {
  background: #e8f7ec;
  border: 1px solid #b8e6c2;
  color: #1b5d2c;
}
.alert-success h2 { color: #1b5d2c; margin-top: 0; }
.alert-error {
  background: #fdecec;
  border: 1px solid #f3b8b8;
  color: #8a1b1b;
}

/* Blog */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
}

.post-list { display: grid; gap: 28px; }
.post {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.post-meta { color: var(--text-muted); font-size: 0.9rem; }

/* Prose (legal pages) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2em; }
.prose ul { padding-left: 22px; }
.prose .muted { color: var(--text-muted); }

/* Footer */
.site-footer {
  background: var(--bg);
  color: #c9cdd9;
  padding: 56px 0 24px;
  margin-top: 48px;
}
.site-footer .brand-text strong { color: var(--text-invert); }
.site-footer .brand-text span { color: #8d93a3; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: var(--text-invert);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-list a, .site-footer a { color: #c9cdd9; }
.footer-list a:hover, .site-footer a:hover { color: var(--brand); }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #1f222b;
  padding-top: 20px;
  color: #8d93a3;
}
