/* =========================================
   INK TEMPLE – TATTOO STUDIO CSS
   Colors: #000000 / #B3001E / #FFFFFF
   ========================================= */

:root {
  --black: #000000;
  --red: #B3001E;
  --red-dark: #8A0017;
  --red-light: #D4002E;
  --white: #FFFFFF;
  --grey-100: #f5f5f5;
  --grey-200: #e0e0e0;
  --grey-400: #9e9e9e;
  --grey-800: #1a1a1a;
  --grey-900: #111111;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 40px rgba(0,0,0,0.5);
  --shadow-red: 0 0 30px rgba(179,0,30,0.3);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: 100%; object-fit: cover; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  outline: none;
  width: 100%;
}
textarea { resize: vertical; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--grey-900); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
.accent { color: var(--red); }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.section-title-dark {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-dark { background: var(--black); padding: 80px 0; }
.section-white { background: var(--white); color: var(--black); padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.center-btn { text-align: center; margin-top: 48px; }

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: var(--transition);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(0,0,0,0.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
  border-bottom: 1px solid rgba(179,0,30,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  align-items: center;
  gap: 6px;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.1em;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}
.nav-cta:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(179,0,30,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 20px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ===== FEATURES BAND ===== */
.features-band {
  background: var(--red);
  padding: 40px 0;
}
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
  min-width: 120px;
  max-width: 160px;
  color: var(--white);
}
.feature-icon {
  width: 56px; height: 56px;
  color: var(--white);
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  transform: scale(1.15);
}
.feature-item p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border-radius: 2px;
}
.gallery-item.large {
  aspect-ratio: unset;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(179,0,30,0.9), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border-color: var(--red);
}
.quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  font-family: var(--font-heading);
  margin-bottom: 16px;
  opacity: 0.3;
}
.testimonial-content {
  color: var(--grey-800);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-content p { margin-bottom: 12px; }
.testimonial-content strong { color: var(--red); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--grey-200);
  padding-top: 20px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--red);
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-info strong { color: var(--black); font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: #f59e0b; letter-spacing: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  padding: 0;
}
.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-left { overflow: hidden; height: 500px; }
.cta-left img { width: 100%; height: 100%; object-fit: cover; }
.cta-right {
  padding: 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-right h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.cta-right h2 .accent { color: var(--black); }
.cta-right > p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* ===== QUICK FORM ===== */
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quick-form input,
.quick-form textarea {
  background: var(--white);
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 0.9rem;
  color: var(--black);
  border: 2px solid transparent;
  transition: var(--transition);
}
.quick-form input:focus,
.quick-form textarea:focus {
  border-color: var(--black);
}
.quick-form input::placeholder,
.quick-form textarea::placeholder { color: var(--grey-400); }

/* ===== FEATURED IN ===== */
.featured-in { padding: 60px 0; }
.featured-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}
.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.featured-logo-item {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
}
.featured-logo-item:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}
.portfolio-hero { background: linear-gradient(135deg, #0d0d0d 0%, #1a0005 100%); }
.about-hero { background: linear-gradient(135deg, #0d0d0d 0%, #1a0005 100%); }
.contact-hero { background: linear-gradient(135deg, #0d0d0d 0%, #1a0005 100%); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(179,0,30,0.2), transparent 70%);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section { padding-top: 60px; }
.portfolio-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.filter-btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ===== STYLE CARDS (POLAROID) ===== */
.portfolio-styles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.style-card {
  background: var(--white);
  padding: 12px 12px 40px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.style-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}
.style-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 8px;
}
.style-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.style-name {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--black);
  text-align: center;
  padding-top: 8px;
}

/* ===== CATEGORY GALLERY ===== */
.category-gallery {
  margin-top: 20px;
}
.category-gallery-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.category-back-btn {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}
.category-back-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.category-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.category-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.category-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-gallery-item:hover img { transform: scale(1.08); }
.category-gallery-item .masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(179,0,30,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.category-gallery-item:hover .masonry-overlay { opacity: 1; }

/* ===== MASONRY PORTFOLIO ===== */
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.masonry-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.1); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(179,0,30,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.masonry-overlay span {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* ===== VIDEO GALLERY ===== */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.video-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--grey-900);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.video-gallery-item iframe {
  width: 100%;
  border: none;
  display: block;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--red);
  padding: 60px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-strip-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
}
.cta-strip-inner h2 .accent { color: var(--black); }
.cta-strip-inner .btn-primary {
  background: var(--black);
  border-color: var(--black);
  white-space: nowrap;
}
.cta-strip-inner .btn-primary:hover {
  background: var(--grey-800);
  border-color: var(--grey-800);
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text { color: var(--black); }
.about-text p {
  margin-bottom: 20px;
  color: var(--grey-800);
  font-size: 0.95rem;
  line-height: 1.8;
}
.about-highlights {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--grey-200);
}
.highlight-item { text-align: center; flex: 1; }
.highlight-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
}
.highlight-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 4px;
}
.about-images {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 80%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--grey-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}
.why-icon { font-size: 2.5rem; margin-bottom: 20px; line-height: 1; }
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== ARTISTS ===== */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.artist-card {
  text-align: center;
  transition: var(--transition);
}
.artist-card:hover {
  transform: translateY(-6px);
}
.artist-img {
  position: relative;
  width: 200px; height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--red);
}
.artist-img img { width: 100%; height: 100%; object-fit: cover; }
.artist-social {
  position: absolute;
  bottom: 8px; right: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: var(--transition);
}
.artist-card:hover .artist-social { opacity: 1; }
.artist-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.artist-specialty {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.artist-info p {
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-main { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
}
.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-sub {
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  font-size: 0.95rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--grey-900);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px;
  border-radius: 2px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: #1a0005;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select { color: rgba(255,255,255,0.7); }
.form-group select option { background: var(--grey-900); color: var(--white); }
.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.form-check input { width: auto; accent-color: var(--red); margin-top: 3px; flex-shrink: 0; }
.form-check label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}
.form-success {
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
  padding: 12px;
  background: rgba(74,222,128,0.1);
  border-radius: 2px;
  border: 1px solid rgba(74,222,128,0.3);
}

/* ===== CONTACT INFO ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--grey-900);
  border-radius: 4px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.info-card:hover { border-color: var(--red); }
.info-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; }
.info-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.info-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}
.info-card em { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.social-links {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 2px;
  background: var(--grey-900);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.map-placeholder {
  background: var(--grey-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.map-placeholder:hover { border-color: var(--red); }
.map-inner {
  text-align: center;
  color: rgba(255,255,255,0.4);
}
.map-inner span { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.map-inner p { font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; }
.map-inner small { font-size: 0.75rem; color: var(--red); }

/* ===== MAP EMBED ===== */
.map-embed {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.map-embed iframe {
  display: block;
  width: 100%;
}
.map-open-link {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--grey-900);
  transition: var(--transition);
  text-decoration: none;
}
.map-open-link:hover { background: rgba(179,0,30,0.15); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: 2px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--red);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-question.open::after { content: '−'; }
.faq-question:hover { color: var(--red); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--grey-100);
}
.faq-answer p {
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--grey-800);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer { background: var(--grey-900); }
.footer-top { padding: 80px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-links a, .footer-links p {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  transition: var(--transition);
  cursor: pointer;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--red-light);
  transform: translateY(-3px);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 400px; order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-row: span 1; aspect-ratio: 1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-masonry { grid-template-columns: repeat(3, 1fr); }
  .video-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(179,0,30,0.3);
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 1rem; }
  .hero-eyebrow { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .features-container { gap: 24px; justify-content: center; }
  .feature-item { min-width: 100px; max-width: 130px; }
  .cta-content { grid-template-columns: 1fr; }
  .cta-left { height: 280px; }
  .cta-right { padding: 40px 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .video-gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .about-highlights { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 480px) {
  .portfolio-styles { grid-template-columns: 1fr 1fr; }
  .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .features-container { flex-direction: row; justify-content: center; }
  .page-hero { height: 40vh; }
}
