/* ===== Black Hearts - Brand / Studio ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;600;700;800&display=swap');

:root {
  --black: #000000;
  --near-black: #0a0a0a;
  --dark: #18181b;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --red: #e11d48;
  --red-dark: #be123c;
  --red-light: #fb7185;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--gray-400);
  line-height: 1.7;
}

::selection { background: var(--red); color: var(--white); }

/* ===== Header - minimal fixed ===== */
header {
  position: fixed; top: 0; width: 100%;
  padding: 0 40px; height: 64px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
header .logo {
  font-size: 1rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  text-transform: uppercase; letter-spacing: 3px;
  font-weight: 600;
}
header .logo span { color: var(--red); }

/* Slide-in drawer */
.drawer-trigger {
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
}
.drawer-trigger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 1px;
}
.drawer-trigger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); width: 16px; }
.drawer-trigger.active span:nth-child(2) { opacity: 0; }
.drawer-trigger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); width: 16px; }

.drawer {
  position: fixed; top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--near-black);
  border-left: 1px solid rgba(255,255,255,0.04);
  padding: 100px 40px;
  z-index: 99;
  transition: right 0.4s ease;
}
.drawer.open { right: 0; }
.drawer ul { list-style: none; }
.drawer ul li { margin-bottom: 20px; opacity: 0; transform: translateX(20px); transition: all 0.4s ease; }
.drawer.open ul li { opacity: 1; transform: translateX(0); }
.drawer.open ul li:nth-child(1) { transition-delay: 0.1s; }
.drawer.open ul li:nth-child(2) { transition-delay: 0.15s; }
.drawer.open ul li:nth-child(3) { transition-delay: 0.2s; }
.drawer.open ul li:nth-child(4) { transition-delay: 0.25s; }
.drawer ul li a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--gray-500); text-decoration: none;
  text-transform: uppercase; letter-spacing: 3px;
  transition: color 0.2s;
}
.drawer ul li a:hover { color: var(--red); }
.drawer .drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: -1; opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.drawer.open .drawer-overlay { opacity: 1; pointer-events: auto; }

/* ===== Hero - Full viewport, centered ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(225,29,72,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.hero .inner { position: relative; z-index: 1; max-width: 700px; }
.hero .deco {
  font-size: 2rem; color: var(--red);
  opacity: 0.3; letter-spacing: 10px;
  margin-bottom: 24px;
}
.hero .line {
  width: 40px; height: 1px;
  background: var(--red); opacity: 0.4;
  margin: 0 auto 24px;
}
.hero h1 {
  font-size: 4.5rem; font-weight: 800;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }
.hero p {
  color: var(--gray-500);
  font-size: 0.95rem;
  max-width: 480px; margin: 0 auto 32px;
  line-height: 1.8;
}
.hero .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  font-weight: 600; text-decoration: none;
  transition: all 0.25s ease; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
  border: none; cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--gray-600); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ===== Section shared ===== */
section { padding: 100px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--near-black); }

.stag {
  font-size: 0.7rem; font-weight: 600;
  color: var(--red); text-transform: uppercase;
  letter-spacing: 3px; margin-bottom: 10px;
}
h2 {
  font-size: 2.4rem; font-weight: 800;
  color: var(--white); line-height: 1.1;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.section-desc { color: var(--gray-500); max-width: 480px; font-size: 0.92rem; line-height: 1.8; }

/* ===== Services - Zigzag alternating ===== */
.svc-alt { display: flex; flex-direction: column; gap: 40px; }
.svc-alt-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.svc-alt-item:nth-child(even) .sav-graphic { order: 1; }
.svc-alt-item:nth-child(even) .sav-text { order: 2; }

.sav-graphic {
  height: 220px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.sav-graphic .sg-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.7rem; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: 2px;
}
.sav-text h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 10px;
}
.sav-text p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; }

/* ===== Stats ===== */
.stats-strip { display: flex; }
.stat-unit {
  flex: 1; text-align: center;
  padding: 32px 20px;
  position: relative;
}
.stat-unit:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 25%;
  height: 50%; width: 1px; background: rgba(255,255,255,0.04);
}
.stat-unit .sn { font-size: 2.2rem; font-weight: 800; color: var(--white); display: block; line-height: 1; }
.stat-unit .sl { font-size: 0.75rem; color: var(--gray-500); display: block; margin-top: 4px; text-transform: uppercase; letter-spacing: 1.5px; }

/* ===== About split ===== */
.about-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.about-text p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.8; margin-bottom: 14px; }
.about-text .big-quote {
  border-left: 2px solid var(--red);
  padding: 12px 20px;
  margin: 20px 0;
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.6;
}
.about-info {
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 4px;
  padding: 28px;
}
.about-info h4 { color: var(--red); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.ai-item { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.02); font-size: 0.82rem; }
.ai-item:last-child { border-bottom: none; }
.ai-item .k { color: var(--gray-600); }
.ai-item .v { color: var(--gray-300); text-align: right; }

/* ===== Values ===== */
.vals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.val {
  text-align: center; padding: 36px 20px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.val:hover { border-color: rgba(225,29,72,0.15); }
.val .vi { font-size: 2rem; margin-bottom: 12px; }
.val h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.val p { color: var(--gray-500); font-size: 0.82rem; line-height: 1.5; }

/* ===== Testimonials ===== */
.t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.t-card { border: 1px solid rgba(255,255,255,0.03); border-radius: 4px; padding: 28px; }
.t-card .tq { color: var(--gray-400); font-size: 0.88rem; line-height: 1.7; margin-bottom: 14px; }
.t-card .tn { color: var(--white); font-weight: 600; font-size: 0.82rem; }
.t-card .tr { color: var(--gray-600); font-size: 0.75rem; margin-top: 2px; }

/* ===== CTA ===== */
.cta-block {
  background: var(--red);
  text-align: center;
  padding: 80px 40px;
}
.cta-block h2 { color: var(--white); margin-bottom: 10px; }
.cta-block p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 24px; }
.cta-block .btn-outline { border-color: rgba(255,255,255,0.3); }
.cta-block .btn-outline:hover { border-color: var(--white); color: var(--white); }

/* ===== Footer ===== */
footer { padding: 60px 40px 28px; border-top: 1px solid rgba(255,255,255,0.02); }
.ft-inner { max-width: 1100px; margin: 0 auto; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 28px; }
.ft-col h4 { color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.ft-col p { color: var(--gray-500); font-size: 0.82rem; line-height: 1.7; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 8px; }
.ft-col ul li a { color: var(--gray-500); text-decoration: none; font-size: 0.82rem; }
.ft-col ul li a:hover { color: var(--red); }
.ft-bot { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.02); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; color: var(--gray-600); }
.ft-bot a { color: var(--gray-600); text-decoration: none; }
.ft-bot a:hover { color: var(--red); }

/* ===== Sub-pages ===== */
.pagehd {
  padding: 120px 40px 50px;
  text-align: center;
}
.pagehd h1 { font-size: 2.6rem; color: var(--white); text-transform: uppercase; }
.pagehd p { color: var(--gray-500); max-width: 460px; margin: 10px auto 0; font-size: 0.9rem; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.cf input, .cf textarea {
  width: 100%; padding: 14px 18px;
  background: var(--near-black); border: 1px solid rgba(255,255,255,0.04);
  border-radius: 4px; color: var(--white); font-size: 0.92rem;
  margin-bottom: 14px; font-family: inherit;
  transition: border-color 0.2s;
}
.cf input:focus, .cf textarea:focus { outline: none; border-color: var(--red); }
.cf textarea { min-height: 130px; resize: vertical; }
.ci-box { border: 1px solid rgba(255,255,255,0.04); border-radius: 4px; padding: 28px; }
.ci-box h4 { color: var(--red); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 16px; }
.ci-item .ci-ico { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.04); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-item .ci-l { color: var(--gray-600); font-size: 0.75rem; }
.ci-item .ci-v { color: var(--gray-300); font-size: 0.85rem; }

.privacy { max-width: 780px; margin: 0 auto; padding: 40px 20px; }
.privacy h3 { color: var(--white); font-size: 1.1rem; margin: 28px 0 10px; text-transform: uppercase; letter-spacing: 1px; }
.privacy p { color: var(--gray-400); line-height: 1.8; margin-bottom: 10px; font-size: 0.9rem; }

@media (max-width: 1024px) {
  .svc-alt-item { grid-template-columns: 1fr; gap: 20px; }
  .svc-alt-item:nth-child(even) .sav-graphic { order: 0; }
  .svc-alt-item:nth-child(even) .sav-text { order: 0; }
  .stats-strip { flex-wrap: wrap; }
  .stat-unit { flex: 0 0 50%; }
  .stat-unit:nth-child(2)::after { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .vals { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  header { padding: 0 20px; }
  .hero { padding: 100px 24px 60px; }
  .hero h1 { font-size: 2.8rem; }
  section { padding: 70px 24px; }
  h2 { font-size: 1.8rem; }
  .stat-unit { flex: 0 0 50%; }
  .vals { grid-template-columns: 1fr; }
  .pagehd { padding: 100px 24px 30px; }
  .pagehd h1 { font-size: 1.8rem; }
  .cf-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bot { flex-direction: column; text-align: center; }
}
