/* BLK ROSE PRODUCTIONS — Shared Site Styles */
/* Brand: #0d0d0d bg, #141414 surface, #7B1A3A accent, #ffffff/#cccccc text */
/* Fonts: Oswald (headings) + Montserrat (body) */

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

:root {
  --bg:       #0d0d0d;
  --surface:  #141414;
  --surface2: #1c1c1c;
  --accent:   #7B1A3A;
  --accent-lt:#9e2249;
  --text:     #ffffff;
  --text-muted:#aaaaaa;
  --border:   #2a2a2a;
  --font-head:'Oswald', Arial, sans-serif;
  --font-body:'Montserrat', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.7; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; background: rgba(13,13,13,0.97); border-bottom: 1px solid var(--accent); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 72px; }
nav .logo img { height: 44px; width: auto; display: block; }
nav .logo span { font-family: var(--font-head); font-size: 22px; letter-spacing: 4px; color: var(--text); text-transform: uppercase; }
nav ul { list-style: none; display: flex; gap: 36px; }
nav ul li a { font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color .2s; }
nav ul li a:hover, nav ul li a.active { color: var(--accent); }

/* ── HERO ── */
.hero { position: relative; min-height: 540px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 5% 80px; background: var(--surface); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(123,26,58,0.18) 0%, transparent 60%); pointer-events: none; }
.hero-eyebrow { font-family: var(--font-body); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: block; }
.hero h1 { font-family: var(--font-head); font-size: clamp(42px,6vw,84px); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; line-height: 1.05; margin-bottom: 24px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto 36px; }
.hero-divider { width: 48px; height: 2px; background: var(--accent); margin: 0 auto 28px; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: var(--font-body); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; padding: 14px 36px; border-radius: 2px; text-decoration: none; cursor: pointer; transition: all .2s; border: none; }
.btn-primary { background: var(--accent); color: var(--text); }
.btn-primary:hover { background: var(--accent-lt); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); }

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-label { font-family: var(--font-body); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 16px; }
.section-title { font-family: var(--font-head); font-size: clamp(28px,4vw,48px); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; line-height: 1.1; margin-bottom: 20px; }
.section-divider { width: 40px; height: 2px; background: var(--accent); margin-bottom: 32px; }
.section-text { color: var(--text-muted); max-width: 680px; line-height: 1.8; }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ── CARD ── */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 36px; transition: border-color .2s; }
.card:hover { border-color: var(--accent); }
.card-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
.card h3 { font-family: var(--font-head); font-size: 22px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--surface2); border: 1px solid var(--border); color: var(--text); font-family: var(--font-body); font-size: 14px; padding: 12px 16px; border-radius: 2px; outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── FOOTER ── */
footer { background: #080808; border-top: 1px solid var(--accent); padding: 60px 5% 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { font-family: var(--font-head); font-size: 14px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; color: var(--text); }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color .2s; }
footer ul li a:hover { color: var(--accent); }
footer p { color: var(--text-muted); font-size: 13px; line-height: 1.7; max-width: 340px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #555; }
.social-links { display: flex; gap: 16px; }
.social-links a { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; font-size: 13px; transition: all .2s; }
.social-links a:hover { border-color: var(--accent); color: var(--accent); }
