/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf6f0;
  --fg: #111010;
  --fg-muted: #6b6760;
  --accent: #ff4a1c;
  --accent-mid: #e83e10;
  --accent-dim: rgba(255, 74, 28, 0.12);
  --accent-red: #e8161e;
  --accent-orange: #ff6b2b;
  --accent-yellow: #f5c400;
  --surface: #ffffff;
  --border: rgba(17,16,16,0.08);
  --radius: 12px;
  --radius-sm: 6px;
}

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

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

::selection {
  background: var(--accent);
  color: #fff;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, .wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.overline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 2.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
}

.navbar-inner {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ===== HERO ===== */
.hero {
  padding: 4rem 3rem 6rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.lede {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== MOCKUP STACK ===== */
.hero-mockups {
  display: flex;
  justify-content: center;
}

.mockup-stack {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.mockup-card {
  width: 130px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(17,16,16,0.12), 0 2px 8px rgba(17,16,16,0.06);
  transform: rotate(var(--rot, 0deg)) translateY(var(--y-offset, 0px));
  transition: transform 0.3s ease;
}

.mockup-card:hover {
  transform: rotate(0deg) translateY(-8px) !important;
}

.card-1 { --rot: -6deg; --y-offset: -12px; }
.card-2 { width: 160px; --rot: 2deg; --y-offset: 0; z-index: 2; }
.card-3 { --rot: 7deg; --y-offset: -8px; }

.card-inner {
  background: #fff;
}

.card-top {
  padding: 0.5rem 0.75rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.accent-red { background: var(--accent-red); }
.accent-orange { background: var(--accent-orange); }
.accent-yellow { background: var(--accent-yellow); color: #111; }

.card-art {
  height: 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.card-art-1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.card-art-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,74,28,0.15) 0px,
    rgba(255,74,28,0.15) 1px,
    transparent 1px,
    transparent 8px
  );
}

.card-art-2 {
  background: linear-gradient(180deg, #ff4a1c 0%, #1a1a1a 70%);
}

.card-art-2::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  opacity: 0.8;
}

.card-art-3 {
  background: #f5f0ea;
  padding: 0.75rem;
  font-size: 0.55rem;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}

.card-label {
  padding: 0.5rem 0.75rem;
  font-size: 0.6rem;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
  border-top: 1px solid var(--border);
}

/* ===== VARIANT B HERO — SOCIAL PROOF ===== */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem 0 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--accent-dim);
  border-radius: var(--radius);
  border: 1px solid rgba(255,74,28,0.15);
}

.proof-stat {
  display: flex;
  flex-direction: column;
}

.proof-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.proof-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-top: 0.2rem;
}

.proof-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,74,28,0.2);
}

.hero-testimonials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.micro-testimonial {
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.micro-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
}

.micro-author {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

/* ===== PACK SECTION ===== */
.pack {
  background: var(--fg);
  color: var(--bg);
  padding: 6rem 3rem;
}

.pack .section-label { color: var(--accent); }
.pack .section-title { color: var(--bg); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pack-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pack-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pack-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.pack-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--bg);
}

.pack-item p {
  font-size: 0.85rem;
  color: rgba(250,246,240,0.6);
  line-height: 1.5;
}

.pack-pricing {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.price {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-label {
  font-size: 0.8rem;
  color: rgba(250,246,240,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.price-note {
  font-size: 0.85rem;
  color: rgba(250,246,240,0.5);
  max-width: 260px;
}

/* ===== PROCESS ===== */
.process {
  padding: 6rem 3rem;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-dim);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 3rem;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 99px;
}

.closing h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 0.75rem;
  line-height: 1.6;
}

.closing-sub {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent) !important;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer .wordmark {
  color: var(--bg);
  font-size: 1.2rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(250,246,240,0.4);
}

.footer-links {
  font-size: 0.85rem;
  color: rgba(250,246,240,0.5);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(250,246,240,0.3);
  margin-top: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  
  .hero { padding: 3rem 1.5rem 4rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-copy h1 { font-size: 2.8rem; }
  .hero-mockups { display: none; }
  
  .pack { padding: 4rem 1.5rem; }
  .pack-items { grid-template-columns: 1fr; }
  .pack-pricing { flex-direction: column; align-items: flex-start; gap: 1rem; }
  
  .process { padding: 4rem 1.5rem; }
  .step-row { grid-template-columns: 1fr; }
  
  .closing { padding: 5rem 1.5rem; }
  
  .footer { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .navbar-inner .tagline { display: none; }
  .hero-copy h1 { font-size: 2.2rem; }
}

/* ===== SAMPLES GALLERY ===== */
.samples {
  padding: 6rem 3rem;
  background: var(--bg);
}

.samples-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-top: -1.5rem;
  margin-bottom: 3rem;
  max-width: 520px;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Individual pack card */
.sample-pack {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sample-pack:hover {
  box-shadow: 0 12px 40px rgba(17,16,16,0.12);
  transform: translateY(-4px);
}

.pack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
}

.pack-theme-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.pack-meta {
  font-size: 0.7rem;
  color: var(--fg-muted);
}

/* Three-poster row */
.poster-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.875rem 0.875rem 0;
  align-items: flex-end;
}

/* Square poster (Instagram 1:1) */
.poster-square {
  width: 50%;
  aspect-ratio: 1;
  background: var(--poster-bg, #111);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

/* Story poster (9:16 — compressed for display) */
.poster-story {
  flex: 1;
  aspect-ratio: 9/14;
  background: var(--poster-bg, #111);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.poster-story-text {
  padding: 0.5rem;
  z-index: 2;
}

/* WhatsApp cover (wide) */
.poster-wa {
  width: 28%;
  aspect-ratio: 1;
  background: var(--poster-bg, #111);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.poster-wa-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  padding: 0.5rem;
}

.wa-icon {
  font-size: 1.25rem;
  margin-bottom: 0.1rem;
}

.poster-band {
  padding: 0.3rem 0.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.poster-art {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.poster-info {
  padding: 0.4rem 0.5rem 0.5rem;
}

.poster-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.poster-detail {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

/* ---- Poster art fills per theme ---- */

/* Club Night */
.pa-club {
  background: linear-gradient(135deg, #0d0d0d 0%, #3d0000 60%, #e8161e 100%);
}
.pa-club::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(232,22,30,0.2) 0px,
    rgba(232,22,30,0.2) 1px,
    transparent 1px,
    transparent 8px
  );
}
.pa-club-story {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, #e8161e 0%, #0d0d0d 70%);
  opacity: 0.85;
}

/* Campus */
.pa-campus {
  background: linear-gradient(135deg, #ff6b2b 0%, #f5c400 100%);
}
.pa-campus::after {
  content: '🎓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  opacity: 0.6;
}
.pa-campus-story {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ff6b2b 0%, #f5c400 100%);
  opacity: 0.7;
}

/* Clothing Drop */
.pa-drop {
  background: linear-gradient(180deg, #111 0%, #444 100%);
}
.pa-drop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(245,196,0,0.1) 0px,
    rgba(245,196,0,0.1) 1px,
    transparent 1px,
    transparent 12px
  );
}
.pa-drop-story {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #111 0%, #1a1a1a 50%, #f5c400 100%);
}

/* DJ Set */
.pa-dj {
  background: radial-gradient(ellipse at 50% 80%, #7c3aed 0%, #0a0015 70%);
}
.pa-dj::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(124,58,237,0.15) 0px,
    rgba(124,58,237,0.15) 1px,
    transparent 1px,
    transparent 14px
  );
}
.pa-dj-story {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, #7c3aed 0%, #0a0015 80%);
}

/* Car Wash */
.pa-carwash {
  background: linear-gradient(135deg, #0ea5e9 0%, #bae6fd 100%);
}
.pa-carwash::after {
  content: '💧';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  opacity: 0.5;
}
.pa-carwash-story {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0ea5e9 0%, #e0f7ff 100%);
  opacity: 0.8;
}

/* ---- Reel mock ---- */
.reel-mock {
  margin: 0.875rem 0.875rem 0;
  border-radius: 8px;
  aspect-ratio: 16/7;
  background: var(--reel-bg, linear-gradient(180deg, #111 0%, #333 100%));
  position: relative;
  overflow: hidden;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(0,0,0,0.35);
}

.reel-play {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #111;
  flex-shrink: 0;
}

.reel-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}

.reel-duration {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  margin-left: auto;
  padding-right: 0.75rem;
}

/* ---- Caption block ---- */
.caption-block {
  padding: 0.875rem;
  margin-top: 0.875rem;
  border-top: 1px solid var(--border);
}

.caption-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.caption-text {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.caption-tags {
  color: #0ea5e9;
  font-weight: 500;
}

/* ---- Samples CTA ---- */
.samples-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.samples-cta-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cta-btn:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
}

/* ===== PRICING TIERS ===== */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.tier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  position: relative;
  text-align: center;
}
.tier-featured {
  border-color: var(--accent);
  background: rgba(255,74,28,0.08);
}
.tier-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,246,240,0.6);
  margin-bottom: 0.5rem;
}
.tier-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.tier-desc {
  font-size: 0.75rem;
  color: rgba(250,246,240,0.45);
  margin-top: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .pricing-tiers { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 3rem;
  background: var(--fg);
}

.testimonials .section-label { color: var(--accent); }
.testimonials .section-title { color: var(--bg); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: rgba(250,246,240,0.85);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.author-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg);
}

.author-meta {
  font-size: 0.75rem;
  color: rgba(250,246,240,0.45);
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .testimonials { padding: 4rem 1.5rem; }
}

/* ===== SAMPLES RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sample-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .samples { padding: 4rem 1.5rem; }
  .sample-grid { grid-template-columns: 1fr; }
  .samples-cta { flex-direction: column; gap: 1rem; }
}