/* Inkwell Tattoo Studio — Standard Tier Demo */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --dark: #0a0a0f; --dark2: #111118; --dark3: #1a1a26;
    --accent: #c084fc; --accent2: #a855f7;
    --white: #fff; --muted: #71717a; --border: rgba(255,255,255,.1);
    --font: 'Inter', system-ui, sans-serif; --radius: 12px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--white); background: var(--dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; background: var(--dark); }
.dark-section { background: var(--dark2); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin: 12px 0 16px; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.5); }
.section-tag { display: inline-block; background: rgba(192,132,252,.15); color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.accent { color: var(--accent); }

/* Demo Bar */
.demo-bar { background: var(--accent2); color: var(--white); text-align: center; padding: 10px 24px; font-size: .85rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1001; }
.demo-bar a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; background: var(--accent2); color: var(--white); font-weight: 700; font-size: .95rem; padding: 13px 28px; border-radius: 8px; border: 2px solid var(--accent2); cursor: pointer; transition: background .2s, transform .15s; }
.btn-primary:hover { background: #9333ea; transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; background: transparent; color: rgba(255,255,255,.8); font-weight: 600; font-size: .95rem; padding: 13px 28px; border-radius: 8px; border: 2px solid rgba(255,255,255,.25); transition: border-color .2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-nav { background: var(--accent2); color: var(--white) !important; font-weight: 700; padding: 9px 20px; border-radius: 8px; }

/* Navbar */
.navbar { position: fixed; top: 36px; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: background .3s, top .3s; }
.navbar.scrolled { background: rgba(8,8,14,.97); box-shadow: 0 2px 20px rgba(0,0,0,.5); top: 0; backdrop-filter: blur(8px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.1rem; font-weight: 600; }
.nav-brand strong { font-weight: 900; }
.brand-mark { font-size: 1.2rem; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links li a { color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links li a:hover { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }

/* Hero */
.hero { min-height: 95vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; overflow: hidden; background: var(--dark); }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.72); z-index: 1; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-block; background: rgba(192,132,252,.15); color: var(--accent); font-size: .82rem; font-weight: 600; padding: 7px 16px; border-radius: 100px; border: 1px solid rgba(192,132,252,.25); margin-bottom: 24px; }
.hero-content h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; line-height: 1.05; letter-spacing: -.025em; margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,.6); font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Gallery */
.filter-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn { background: var(--dark3); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.6); font-family: var(--font); font-size: .85rem; font-weight: 600; padding: 8px 18px; border-radius: 100px; cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--accent2); border-color: var(--accent2); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1; position: relative; cursor: pointer; background: var(--dark3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.4) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.g-style { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.g-title { font-size: .9rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 4px; }
.g-artist { font-size: .75rem; color: rgba(255,255,255,.55); }

/* Artists */
.artists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.artist-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: border-color .2s; }
.artist-card:hover { border-color: rgba(192,132,252,.4); }
.artist-avatar { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden; border: 3px solid rgba(192,132,252,.3); }
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.artist-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.artist-style { font-size: .82rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.artist-card p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 16px; }
.artist-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.artist-tags span { background: rgba(192,132,252,.12); color: var(--accent); font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.price-card { background: var(--dark3); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 28px 20px; }
.price-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 10px; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .06em; font-size: .8rem; }
.price-range { font-size: 1.3rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.price-card p { font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.services-note { text-align: center; color: rgba(255,255,255,.4); font-size: .88rem; }

/* Booking */
.booking-section { background: var(--dark2); }
.contact-form { max-width: 680px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-full { margin-bottom: 18px; }
label { font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.7); }
input, select, textarea { font-family: var(--font); font-size: .95rem; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12); border-radius: 8px; color: var(--white); padding: 12px 14px; outline: none; width: 100%; transition: border-color .2s; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.25); }
select option { background: var(--dark2); }
textarea { resize: vertical; min-height: 110px; }

/* Footer */
.footer { background: #060609; padding: 32px 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { text-align: center; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.footer-brand { color: #fff; font-size: 1.1rem; font-weight: 600; display: flex; gap: 8px; align-items: center; }
.footer-brand strong { font-weight: 900; }
.footer-inner p { color: rgba(255,255,255,.35); font-size: .85rem; }
.footer-copy { font-size: .8rem !important; color: rgba(255,255,255,.2) !important; }
.footer-copy a { color: var(--accent); }

/* Responsive */
@media (max-width: 1100px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .artists-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; position: fixed; inset: 0; background: rgba(6,6,10,.98); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
