/* ===== Tokens ===== */
:root {
  --bg: #0b0b0d;
  --bg-soft: #141417;
  --fg: #f4f1ea;
  --muted: #9a958c;
  --accent: #c9a14a;        /* swap to match the artist's brand */
  --border: rgba(255, 255, 255, 0.08);
  --maxw: 1180px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  font-weight: 700; letter-spacing: 0.02em; font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
/* CTA buttons are ALWAYS black background + white text (do not tint with --accent). */
.btn--primary { background: #000; color: #fff; border-color: #000; }
.btn--primary:hover { background: #1a1a1a; }
.btn--ghost { border-color: var(--border); color: var(--fg); background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,0.06); }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

/* ===== Sections shell ===== */
section { padding: 6rem 1.5rem; }
.section__head { max-width: var(--maxw); margin: 0 auto 3rem; text-align: center; }
.section__eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.8rem; font-weight: 700; }
.section__title { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1; margin-top: 0.5rem; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; gap: 1rem;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.is-scrolled { background: rgba(11,11,13,0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav__logo { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.05em; display: flex; align-items: center; }
.nav__logo img { height: 72px; width: auto; } /* transparent PNG, displayed large */
.nav__links { display: flex; gap: 1.8rem; font-size: 0.95rem; }
.nav__links a:hover { color: var(--accent); }
.nav__burger { display: none; background: none; border: none; color: var(--fg); font-size: 1.6rem; cursor: pointer; }

/* ===== Hero ===== */
.hero { position: relative; height: 100vh; min-height: 600px; padding: 0; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.35) 40%, rgba(11,11,13,0.95) 100%); z-index: -1; }
.hero__content { max-width: 820px; padding: 0 1.5rem; }
.hero__eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.8rem; font-weight: 700; }
.hero__title { font-family: var(--font-display); font-size: clamp(3rem, 10vw, 6.5rem); line-height: 0.95; margin: 1rem 0; }
.hero__tags { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__tags span { border: 1px solid var(--border); border-radius: 999px; padding: 0.35rem 1rem; font-size: 0.85rem; color: var(--muted); }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: 1.4rem; opacity: 0.7; animation: bob 2s infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ===== Specialties ===== */
.specialties__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.spec-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: border-color 0.2s ease, transform 0.2s ease; }
.spec-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.spec-card h3 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.03em; margin-bottom: 0.75rem; }
.spec-card p { color: var(--muted); margin-bottom: 1.25rem; }
.link-arrow { color: var(--accent); font-weight: 700; font-size: 0.9rem; }

/* ===== Gallery (horizontal slider — never a stacked column) ===== */
.gallery__slider { position: relative; max-width: var(--maxw); margin: 0 auto; }
.gallery__track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 0.5rem 0.25rem 1.25rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  cursor: grab;
}
.gallery__track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.gallery__track.is-dragging img { pointer-events: none; }
.gallery__item img { -webkit-user-drag: none; user-select: none; }
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__item {
  flex: 0 0 clamp(240px, 32%, 360px); scroll-snap-align: center;
  overflow: hidden; border-radius: 12px; aspect-ratio: 4 / 5; background: var(--bg-soft);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery__item img:hover { transform: scale(1.05); }
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(0,0,0,0.6); color: var(--fg); font-size: 1.8rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); transition: background 0.2s ease, transform 0.2s ease;
}
.gallery__nav:hover { background: #000; }
.gallery__nav--prev { left: -8px; }
.gallery__nav--next { right: -8px; }
@media (max-width: 520px) { .gallery__nav { display: none; } }

/* ===== About ===== */
.about { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about__media img { border-radius: 16px; width: 100%; object-fit: cover; }
.about__text .section__title { text-align: left; }
.about__text p { color: var(--muted); margin: 1.25rem 0; }
.about__highlights { list-style: none; display: grid; gap: 0.6rem; }
.about__highlights li { padding-left: 1.5rem; position: relative; }
.about__highlights li::before { content: "✦"; color: var(--accent); position: absolute; left: 0; }

/* ===== Studio ===== */
.studio { background: var(--bg-soft); }
.studio__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.studio__media img { border-radius: 16px; width: 100%; max-height: 560px; object-fit: cover; }
.studio__text .section__title { text-align: left; }
.studio__text p { color: var(--muted); margin: 1.25rem 0; }
.studio__address { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--fg); margin-bottom: 1.75rem; }
.studio__address svg { color: var(--accent); flex: 0 0 auto; }
.studio__address span { font-size: 0.98rem; line-height: 1.35; }
.studio__address:hover strong { color: var(--accent); }

/* ===== Process ===== */
.process__steps { max-width: var(--maxw); margin: 0 auto; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1.5rem; }
.process__steps li { border-top: 2px solid var(--accent); padding-top: 1rem; }
.process__steps span { font-family: var(--font-display); font-size: 2rem; color: var(--accent); }
.process__steps h3 { margin: 0.25rem 0 0.5rem; }
.process__steps p { color: var(--muted); font-size: 0.95rem; }

/* ===== Contact ===== */
.contact { background: var(--bg-soft); }
.contact__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact__lead { color: var(--muted); margin: 1rem 0 2rem; }
.contact__details { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; color: var(--muted); font-size: 0.95rem; }
.contact__details a:hover { color: var(--accent); }

/* ===== Footer ===== */
.footer { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 2rem 1.5rem; max-width: var(--maxw); margin: 0 auto; color: var(--muted); font-size: 0.9rem; border-top: 1px solid var(--border); }

/* ===== WhatsApp float ===== */
.whatsapp-float { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.4); transition: transform 0.2s ease; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav.is-open .nav__links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(11,11,13,0.97); padding: 1.5rem; gap: 1.2rem; }
  .gallery__item { flex-basis: 70%; }
  .about { grid-template-columns: 1fr; }
  .about__text .section__title { text-align: center; }
  .studio__inner { grid-template-columns: 1fr; }
  .studio__text .section__title { text-align: center; }
  .studio__address { margin-left: auto; margin-right: auto; }
}
@media (max-width: 520px) {
  .gallery__item { flex-basis: 85%; }
  section { padding: 4rem 1.25rem; }
}
