/* ============================================================
   DANK BROCCOLINK — TATTOO ARTIST WEBSITE
   Design System & Global Styles
   Studio: Saigon Ink, 37 Xuân Thủy, Thảo Điền, HCMC
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --mid: #333333;
  --gray: #666666;
  --light-gray: #999999;
  --silver: #cccccc;
  --white: #f5f5f5;
  --pure-white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07a30;
  --red-accent: #8b1a1a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-mono: 'Courier New', monospace;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.2);

  --container: 1200px;
  --nav-height: 80px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-silver { color: var(--silver); }
.text-gray { color: var(--light-gray); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.15em; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ---- Dividers ---- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 32px;
}
.divider-center { margin: 16px auto 32px; }

/* ---- Loading Screen ---- */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  animation: pulse 1.5s ease infinite;
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--dark3);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--gold);
  animation: load 1.5s ease forwards;
}
@keyframes load {
  from { width: 0%; }
  to { width: 100%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 20px;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--silver);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: 700 !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(10,10,10,0.9) 40%, rgba(10,10,10,0.5) 100%),
    url('https://images.unsplash.com/photo-1562962230-ab90734c6e52?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--black) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.hero-title {
  margin-bottom: 8px;
  line-height: 1.05;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero-title .line2 {
  display: block;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 0 60px rgba(201,168,76,0.2);
}
.hero-title .line3 {
  display: block;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gold);
  font-style: italic;
  margin-top: -8px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 500px;
  margin: 24px 0 40px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--light-gray);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--dark3);
  border-bottom: 1px solid var(--dark3);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--dark3);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--light-gray);
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}
.section-sm { padding: 60px 0; }
.section-dark { background: var(--dark); }
.section-darker { background: var(--dark2); }

.section-header {
  margin-bottom: 60px;
}
.section-header.centered { text-align: center; }
.section-header.centered .divider { margin: 16px auto 32px; }
.section-header.centered .section-label::before { display: none; }
.section-header.centered .section-label { padding-left: 0; }

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
}
.about-image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--gold);
  z-index: -1;
}
.about-badge-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px;
  text-align: center;
  min-width: 120px;
}
.about-badge-img .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-img .lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.about-studio {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin-top: 32px;
}
.about-studio-icon { color: var(--gold); font-size: 1.5rem; }
.about-studio-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.about-studio-addr { font-size: 0.8rem; color: var(--light-gray); }
.about-stars { color: var(--gold); font-size: 0.85rem; margin-top: 2px; }

/* Skills */
.skill-list { margin-top: 32px; }
.skill-item { margin-bottom: 20px; }
.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.skill-bar {
  height: 3px;
  background: var(--dark3);
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s ease;
}
.skill-fill.animated { transform: scaleX(1); }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--dark2);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(201,168,76,0.1);
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}
.service-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--white);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
}

/* ---- Portfolio Grid ---- */
.portfolio-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--dark3);
  color: var(--light-gray);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--dark2);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: grayscale(30%);
}
.portfolio-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.portfolio-item.featured {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* ---- Testimonials ---- */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  padding: 32px;
  position: relative;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-quote {
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--silver);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-location { font-size: 0.75rem; color: var(--light-gray); }
.testimonial-stars { color: var(--gold); font-size: 0.75rem; margin-top: 2px; }

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--dark2);
  overflow: hidden;
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-card-title {
  font-size: 1.1rem;
  font-family: var(--font-display);
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card-title a { color: var(--white); transition: color var(--transition); }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--gray);
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ---- Location Section ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location-info h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--gold);
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark3);
}
.location-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.location-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.location-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--light-gray);
  margin-bottom: 4px;
}
.location-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.location-detail-sub {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-top: 2px;
}
.map-container {
  overflow: hidden;
  border: 2px solid var(--dark3);
}
.map-container iframe {
  display: block;
  filter: grayscale(50%) invert(92%) contrast(83%);
  transition: filter var(--transition);
}
.map-container:hover iframe { filter: grayscale(0%); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'DANK';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(0,0,0,0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--black);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(0,0,0,0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-banner .btn-primary {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
}
.cta-banner .btn-primary:hover {
  background: var(--dark2);
  border-color: var(--dark2);
}

/* ---- Footer ---- */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--dark3);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-tagline {
  font-size: 0.75rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 40px;
  height: 40px;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social:hover {
  background: var(--gold);
  color: var(--black);
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: 0.875rem; color: var(--gray); line-height: 1.5; }
.footer-contact-text a { color: var(--gold); transition: color var(--transition); }
.footer-contact-text a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--dark3);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
}
.footer-studio-link {
  color: var(--gold) !important;
  transition: color var(--transition);
}
.footer-studio-link:hover { color: var(--gold-light) !important; }

/* ---- Page Hero (Inner Pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark2);
  border-bottom: 1px solid var(--dark3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-title);
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: rgba(201,168,76,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-top: 16px;
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gray); }

/* ---- Forms ---- */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--silver);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--mid);
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all var(--transition);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  background: var(--mid);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control option { background: var(--dark2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 8px; }

/* Contact form success */
.form-success {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  padding: 24px;
  text-align: center;
  display: none;
}
.form-success.visible { display: block; }

/* ---- Back to Top ---- */
#back-to-top {
  position: fixed;
  bottom: 120px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  border: none;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

/* ---- WhatsApp Float ---- */
#whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark2);
  border-top: 2px solid var(--gold);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 9000;
  flex-wrap: nowrap;
  transform: translateY(100%);
  transition: transform var(--transition);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p {
  font-size: 0.85rem;
  color: var(--silver);
  margin: 0;
  flex: 1;
}
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--dark3);
  padding: 10px 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-decline:hover { border-color: var(--gray); color: var(--silver); }

/* ---- Lightbox ---- */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
#lightbox.open {
  opacity: 1;
  visibility: visible;
}
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--dark2);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
#lightbox-close:hover { background: var(--gold); color: var(--black); }

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--dark3);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  transition: color var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 1.2rem;
  color: var(--gold);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--black); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ---- Blog Single Page ---- */
.blog-content h2 { font-size: 1.8rem; margin: 40px 0 16px; color: var(--white); }
.blog-content h3 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--white); }
.blog-content p { color: var(--silver); line-height: 1.9; margin-bottom: 20px; }
.blog-content ul, .blog-content ol { color: var(--silver); padding-left: 24px; margin-bottom: 20px; }
.blog-content li { margin-bottom: 8px; line-height: 1.7; }
.blog-content strong { color: var(--white); }
.blog-content a { color: var(--gold); }
.blog-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: rgba(201,168,76,0.05);
  margin: 32px 0;
  font-style: italic;
  color: var(--silver);
}
.blog-sidebar .widget {
  background: var(--dark2);
  padding: 28px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.widget-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--dark3);
  font-size: 0.75rem;
  color: var(--light-gray);
  transition: all var(--transition);
  cursor: pointer;
}
.tag:hover { background: var(--gold); color: var(--black); }

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark), var(--gold));
  opacity: 0.3;
}
.process-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-number {
  width: 64px;
  height: 64px;
  background: var(--dark2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 24px;
}
.process-title { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.process-desc { font-size: 0.85rem; color: var(--light-gray); line-height: 1.7; }

/* ---- Admin styles (minimal) ---- */
.admin-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge-pending { background: rgba(201,168,76,0.2); color: var(--gold); }
.badge-contacted { background: rgba(100,150,255,0.2); color: #6496ff; }
.badge-confirmed { background: rgba(50,200,100,0.2); color: #32c864; }
.badge-published { background: rgba(50,200,100,0.2); color: #32c864; }
.badge-draft { background: rgba(150,150,150,0.2); color: var(--gray); }

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.featured { grid-column: span 1; aspect-ratio: 1; }
  .testimonials-slider { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--dark3); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .blog-grid.with-sidebar { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--dark3); padding: 20px 0; }
  .stat-item:last-child { border-bottom: none; }
  .hero-title .line2 { font-size: clamp(3rem, 15vw, 5rem); }
  .about-image-frame { display: none; }
  .about-badge-img { right: 0; bottom: 0; }
}

/* Print styles */
@media print {
  #navbar, #whatsapp-btn, #back-to-top, #cookie-banner, .mobile-menu { display: none !important; }
  body { background: white; color: black; }
}
