/* ============================================================
   INTERO SOUND — Dark Cinematic Studio
   Palette: #0a0a0a base, #1a1a1a panels, #f5a623 amber,
            #ff6b35 warm neon, #2c2c2c borders
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-panel: #121212;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222;
  --border: rgba(255,255,255,0.06);
  --border-amber: rgba(245,166,35,0.3);
  --amber: #f5a623;
  --amber-light: #ffbe5c;
  --neon: #ff6b35;
  --text: #e8e0d5;
  --text-muted: #8a8078;
  --text-dim: #5a5048;
  --white: #ffffff;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --shadow-amber: 0 0 40px rgba(245,166,35,0.15);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p { color: var(--text-muted); }

/* ─── LAYOUT HELPERS ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--amber);
}

.section-header { margin-bottom: 60px; }
.section-header p { max-width: 560px; margin-top: 16px; font-size: 1.05rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* ─── WAVEFORM DECORATION ────────────────────────────────── */
.waveform-bar {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
}
.waveform-bar span {
  display: block;
  width: 3px;
  background: var(--amber);
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
  opacity: 0.8;
}
.waveform-bar span:nth-child(1)  { height: 30%; animation-delay: 0s; }
.waveform-bar span:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.waveform-bar span:nth-child(3)  { height: 50%; animation-delay: 0.2s; }
.waveform-bar span:nth-child(4)  { height: 90%; animation-delay: 0.3s; }
.waveform-bar span:nth-child(5)  { height: 60%; animation-delay: 0.4s; }
.waveform-bar span:nth-child(6)  { height: 40%; animation-delay: 0.5s; }
.waveform-bar span:nth-child(7)  { height: 80%; animation-delay: 0.6s; }
.waveform-bar span:nth-child(8)  { height: 55%; animation-delay: 0.7s; }
.waveform-bar span:nth-child(9)  { height: 35%; animation-delay: 0.8s; }
.waveform-bar span:nth-child(10) { height: 70%; animation-delay: 0.9s; }
.waveform-bar span:nth-child(11) { height: 45%; animation-delay: 1s; }
.waveform-bar span:nth-child(12) { height: 25%; animation-delay: 1.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.6); opacity: 0.6; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--amber);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245,166,35,0.06);
}
.btn-ghost {
  background: transparent;
  color: var(--amber);
  padding: 0;
  gap: 8px;
}
.btn-ghost:hover { gap: 12px; }
.btn svg { flex-shrink: 0; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { color: #0a0a0a; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 16px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; color: var(--text); padding: 8px 0; }
.nav-mobile a:hover { color: var(--amber); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/photos/studio-mixing.jpg') center/cover no-repeat;
  filter: brightness(0.25) saturate(0.7);
  transform: scale(1.03);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(245,166,35,0.05) 100%
  );
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 24px 80px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(232,224,213,0.75);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-waveform {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  z-index: 2;
}
.hero-waveform canvas { width: 100%; height: 100%; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); writing-mode: vertical-rl; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--amber), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker {
  background: var(--amber);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerMove 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
}
.ticker-sep { opacity: 0.4; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SERVICES ───────────────────────────────────────────── */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--neon));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg-card-hover); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--amber);
  transition: background var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(245,166,35,0.18);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; line-height: 1.65; }
.service-card-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}

/* ─── STUDIO / EQUIPMENT ─────────────────────────────────── */
.studio { background: var(--bg-panel); }
.studio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.studio-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.studio-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.studio-photo:hover img { transform: scale(1.04); }
.studio-photo:nth-child(1) { grid-column: 1 / -1; height: 260px; }
.studio-photo:nth-child(2),
.studio-photo:nth-child(3) { height: 180px; }
.studio-photo:nth-child(4) { height: 180px; }
.studio-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.equipment-list { margin-top: 32px; }
.equipment-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.equipment-item:last-child { border-bottom: none; }
.equipment-check {
  width: 20px;
  height: 20px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.equipment-check svg { color: var(--amber); }
.equipment-item strong { display: block; font-size: 0.95rem; color: var(--white); margin-bottom: 2px; }
.equipment-item span { font-size: 0.85rem; color: var(--text-muted); }

/* ─── PROCESS ────────────────────────────────────────────── */
.process { background: var(--bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-amber), var(--border-amber), transparent);
}
.process-step { padding: 0 20px; text-align: center; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; line-height: 1.6; }

/* ─── PORTFOLIO ──────────────────────────────────────────── */
.portfolio { background: var(--bg-panel); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
}
.portfolio-img {
  height: 220px;
  overflow: hidden;
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-img img { transform: scale(1.06); }
.portfolio-info {
  padding: 20px 24px;
}
.portfolio-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.portfolio-info h3 { font-size: 1rem; margin-bottom: 6px; }
.portfolio-info p { font-size: 0.85rem; }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-play {
  width: 56px;
  height: 56px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
}

/* ─── PACKAGES ───────────────────────────────────────────── */
.packages { background: var(--bg); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.package-card:hover {
  border-color: var(--border-amber);
  box-shadow: var(--shadow-amber);
}
.package-card.featured {
  border-color: var(--amber);
  background: linear-gradient(160deg, rgba(245,166,35,0.06), var(--bg-card));
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.package-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.package-card h3 { font-size: 1.3rem; margin-bottom: 20px; }
.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.package-price .currency { font-size: 1.2rem; color: var(--text-muted); margin-top: 6px; }
.package-price .amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
}
.package-price .period { font-size: 0.85rem; color: var(--text-muted); }
.package-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.package-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.package-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.package-feature svg { color: var(--amber); flex-shrink: 0; }
.package-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 16px; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--bg-panel); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--amber);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg { color: var(--amber); }
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245,166,35,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonials-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ─── ARTICLES ───────────────────────────────────────────── */
.articles { background: var(--bg); }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.article-card:hover { border-color: var(--border-amber); }
.article-img {
  height: 180px;
  overflow: hidden;
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-img img { transform: scale(1.05); }
.article-body { padding: 24px; }
.article-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.article-body h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.article-body p { font-size: 0.85rem; line-height: 1.65; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { background: var(--bg-panel); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--amber); }
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--amber);
  border-color: var(--amber);
  color: #0a0a0a;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact { background: var(--bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 400; margin-bottom: 2px; }
.contact-detail span { font-size: 0.95rem; color: var(--white); }
.contact-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-map img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.contact-map-pin {
  position: absolute;
  text-align: center;
  color: var(--amber);
}
.contact-map-pin svg { filter: drop-shadow(0 0 8px rgba(245,166,35,0.5)); }
.contact-map-pin span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.92rem;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--amber); outline: none; }
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control option { background: var(--bg-card); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg);
  accent-color: var(--amber);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-check label {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-check label a { color: var(--amber); border-bottom: 1px solid rgba(245,166,35,0.3); }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--amber);
}
.form-success h3 { font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
}
.footer-main {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.3);
  color: var(--amber);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-left { font-size: 0.82rem; color: var(--text-dim); }
.footer-bottom-right {
  display: flex;
  gap: 24px;
}
.footer-bottom-right a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-bottom-right a:hover { color: var(--text-muted); }

/* ─── COOKIE BANNER ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  z-index: 2000;
  display: none;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.cookie-banner.show { display: flex; }
.cookie-banner-text { flex: 1; }
.cookie-banner-text h4 { font-size: 0.95rem; margin-bottom: 6px; }
.cookie-banner-text p { font-size: 0.82rem; line-height: 1.6; }
.cookie-banner-text p a { color: var(--amber); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner-actions .btn { padding: 10px 20px; font-size: 0.82rem; }

/* ─── SCROLL ANIMATIONS — content always visible ─────────── */
[data-reveal],
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ─── LEGAL PAGES ────────────────────────────────────────── */
.legal-hero {
  padding: 130px 0 60px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-hero p { margin-top: 12px; }
.legal-content {
  padding: 60px 0 100px;
  max-width: 760px;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p { font-size: 0.93rem; line-height: 1.8; margin-bottom: 16px; color: var(--text-muted); }
.legal-content ul { margin: 0 0 16px 0; padding-left: 20px; list-style: disc; }
.legal-content ul li { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--amber); border-bottom: 1px solid rgba(245,166,35,0.3); }
.legal-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
}
.legal-info-box p { margin: 0; }
.legal-info-box strong { color: var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .studio-layout { grid-template-columns: 1fr; }
  .studio-photos { max-width: 600px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; bottom: 0; left: 0; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .packages-grid { gap: 32px; }
}

/* ─── UTILITY ────────────────────────────────────────────── */
.text-amber { color: var(--amber); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
