/* ==============================
   MEMORYVIDEOAI — THEME CSS
   ============================== */

:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1A1410;
  --fg-muted: #6B5D52;
  --primary: #5C2339;
  --accent: #C9A84C;
  --accent-light: #E8D5A3;
  --border: rgba(92, 35, 57, 0.12);
  --shadow: 0 4px 32px rgba(92, 35, 57, 0.08);
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(ellipse at center,
    rgba(201, 168, 76, 0.12) 0%,
    rgba(92, 35, 57, 0.06) 40%,
    transparent 70%);
  border-radius: 50%;
}

.film-frames {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.frame {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.frame-1 {
  width: 280px;
  height: 200px;
  top: 8%;
  right: 8%;
  transform: rotate(6deg);
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
}

.frame-2 {
  width: 180px;
  height: 130px;
  top: 35%;
  right: 3%;
  transform: rotate(-4deg);
  background: linear-gradient(135deg, rgba(92,35,57,0.04) 0%, transparent 60%);
}

.frame-3 {
  width: 120px;
  height: 85px;
  bottom: 20%;
  right: 14%;
  transform: rotate(8deg);
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* PROOF STRIP */
.proof {
  background: var(--primary);
  padding: 20px 48px;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-reaction {
  display: flex;
  align-items: center;
}

.reaction-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.proof-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.proof-label {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* PROCESS */
.process {
  padding: 120px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.process-sub {
  font-size: 18px;
  color: var(--fg-muted);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  padding: 40px 32px;
  position: relative;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 20px;
}

.step-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-left: 8px;
  padding-right: 8px;
}

.process-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--fg-muted);
  font-size: 13px;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--bg-alt);
  padding: 100px 48px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review {
  background: var(--bg);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 16px;
}

.review-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* GUARANTEE */
.guarantee {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.guarantee-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.guarantee-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.badge-days {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.badge-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.guarantee-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.guarantee-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  background: var(--primary);
  padding: 120px 48px;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  background: #3D1525;
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--accent); }

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 768px) {
  .hero { padding: 80px 24px 80px; }
  .hero-headline { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 22px; }
  
  .process { padding: 80px 24px; }
  .process-steps { flex-direction: column; gap: 0; }
  .step { padding: 24px 0; border-bottom: 1px solid var(--border); }
  .step-connector { display: none; }
  
  .testimonials { padding: 80px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  
  .proof { padding: 16px 24px; }
  .proof-inner { justify-content: center; }
  
  .guarantee { padding: 60px 24px; }
  .guarantee-inner { flex-direction: column; text-align: center; gap: 24px; }
  
  .closing { padding: 80px 24px; }
  
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  
  .frame-1, .frame-2, .frame-3 { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
}
