/*
 * ============================================================
 *  LA RESISTENCIA TATTOO ESTUDIO
 *  Main Stylesheet — Dark Studio / Raw Editorial
 *  Mobile-First · CSS Custom Properties · BEM Naming
 * ============================================================
 */

/* ─── Google Fonts (fallback if <link> fails) ────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. CSS RESET & CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Palette */
  --c-bg:           #0A0A0C;
  --c-bg-elevated:  #121214;
  --c-border:       #1E1E22;
  --c-text:         #E8E8EC;
  --c-text-muted:   #7A7A82;
  --c-accent:       #8B1A1A;
  --c-accent-hover: #A52222;
  --c-metallic:     #C0C0C8;
  --c-smoke:        #8A8A8F;
  --c-whatsapp:     #25D366;

  /* Typography */
  --f-display: 'Bebas Neue', 'Impact', sans-serif;
  --f-body:    'Inter', -apple-system, 'Segoe UI', sans-serif;

  /* Spacing */
  --sp-2xs: 0.25rem;
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast:   0.2s var(--ease);
  --t-normal: 0.4s var(--ease);
  --t-slow:   0.7s var(--ease);

  /* Z-layers */
  --z-base:    1;
  --z-header:  100;
  --z-overlay: 500;
  --z-modal:   1000;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

img, picture, video, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }


/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-text);
}

h1 { font-size: clamp(3rem, 10vw, 8rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.75rem); }

p { max-width: 65ch; }


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--sp-sm);
}

@media (min-width: 768px)  { .container { padding: 0 var(--sp-lg); } }
@media (min-width: 1280px) { .container { padding: 0 var(--sp-xl); } }

.section {
  padding: var(--sp-xl) 0;
  position: relative;
}

@media (min-width: 1024px) {
  .section { padding: var(--sp-2xl) 0; }
}

/* Section headers */
.section__header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section__label {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-accent);
  margin-bottom: var(--sp-xs);
  padding: var(--sp-2xs) var(--sp-sm);
  border: 1px solid rgba(139, 26, 26, 0.3);
  border-radius: 2px;
}

.section__title {
  margin-bottom: var(--sp-sm);
}

.section__description {
  color: var(--c-text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}

.btn--sm  { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn--md  { padding: 0.8rem 1.6rem; }
.btn--lg  { padding: 1rem 2rem; font-size: 1.2rem; }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-text);
  box-shadow: 0 0 0 0 rgba(139, 26, 26, 0);
}

.btn--primary:hover {
  background: var(--c-accent-hover);
  box-shadow: 0 0 30px rgba(139, 26, 26, 0.4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid rgba(232, 232, 236, 0.25);
}

.btn--ghost:hover {
  background: rgba(232, 232, 236, 0.06);
  border-color: rgba(232, 232, 236, 0.5);
}

.btn--whatsapp {
  background: var(--c-whatsapp);
  color: #fff;
  font-size: 1.3rem;
  padding: 1.1rem 2rem;
  width: 100%;
  animation: pulse 2.5s infinite;
}

.btn--whatsapp:hover {
  background: #1ebe5d;
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn__wa-icon { flex-shrink: 0; }


/* ============================================================
   5. HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  transition: background var(--t-normal), padding var(--t-normal), border-color var(--t-normal);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--c-border);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-sm);
  padding-bottom: var(--sp-sm);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: calc(var(--z-header) + 2);
  text-decoration: none;
}

.header__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: transform var(--t-fast), filter var(--t-fast);
}

.header__logo:hover .header__logo-img {
  transform: scale(1.08) rotate(3deg);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
}

.header__logo-icon {
  color: var(--c-accent);
  font-size: 1.4rem;
}

.header__logo-text {
  font-family: var(--f-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: calc(var(--z-header) + 2);
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  transition: transform var(--t-fast), opacity var(--t-fast);
  transform-origin: center;
}

.header__hamburger--active .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger--active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger--active .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .header__hamburger { display: none; }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 400px);
  height: 100vh;
  background: rgba(10, 10, 12, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-lg);
  transition: right var(--t-normal);
  z-index: calc(var(--z-header) + 1);
  border-left: 1px solid var(--c-border);
}

.nav--open {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}

.nav__link {
  font-family: var(--f-display);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color var(--t-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width var(--t-fast);
}

.nav__link:hover { color: var(--c-accent); }
.nav__link:hover::after { width: 100%; }

.nav__cta { display: none; }

@media (min-width: 1024px) {
  .nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    border-left: none;
  }

  .nav__list {
    flex-direction: row;
    gap: var(--sp-lg);
  }

  .nav__link {
    font-size: 0.8rem;
    font-family: var(--f-body);
    font-weight: 500;
    letter-spacing: 0.15em;
  }

  .nav__cta { display: inline-flex; }
}


/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.2) 0%,
    rgba(10, 10, 12, 0.6) 50%,
    var(--c-bg) 100%
  );
  z-index: 1;
}

.hero__bg-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(139, 26, 26, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(192, 192, 200, 0.04) 0%, transparent 50%),
    var(--c-bg);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--sp-xl) var(--sp-sm);
}

.hero__badges {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: var(--sp-md);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-text-muted);
  background: rgba(18, 18, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 0;
  text-decoration: none;
  transition: all var(--t-fast);
}

.hero__badge--address {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--c-text);
  border-color: rgba(232, 232, 236, 0.18);
  background: rgba(18, 18, 20, 0.5);
  cursor: pointer;
}

.hero__badge--address:hover {
  border-color: var(--c-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.3);
}

.hero__badge i { color: var(--c-accent); font-size: 0.85rem; }

.hero__badge-separator { opacity: 0.3; }

.hero__badge-status {
  color: var(--c-whatsapp);
  font-weight: 600;
}

.hero__title {
  margin-bottom: var(--sp-md);
  font-family: var(--f-display);
  text-transform: uppercase;
}

.hero__title-line {
  display: block;
  line-height: 0.95;
  color: #FFFFFF;
}

.hero__title-line--top {
  font-size: 0.38em;
  letter-spacing: 0.32em;
  color: #FFFFFF;
  margin-bottom: 0.1em;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero__title-line--main {
  font-size: 1.22em;
  color: #FFFFFF;
  -webkit-text-stroke: 2.5px #000000;
  text-stroke: 2.5px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.08em;
  text-shadow:
    -2px -2px 0 #000000,
     2px -2px 0 #000000,
    -2px  2px 0 #000000,
     2px  2px 0 #000000,
    -3px  0px 0 #000000,
     3px  0px 0 #000000,
     0px -3px 0 #000000,
     0px  3px 0 #000000,
     0 8px 30px rgba(0, 0, 0, 0.95);
  display: block;
}

@media (min-width: 768px) {
  .hero__title-line--main {
    -webkit-text-stroke: 3.5px #000000;
    text-stroke: 3.5px #000000;
  }
}

.hero__title-line--sub {
  font-size: 0.5em;
  letter-spacing: 0.22em;
  color: #FFFFFF;
  font-weight: 500;
  margin-top: 0.35em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero__title-line--sub::before,
.hero__title-line--sub::after {
  content: '';
  display: inline-block;
  width: clamp(16px, 5vw, 40px);
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1px;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--c-text-muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto var(--sp-lg);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  align-items: center;
}

@media (min-width: 480px) {
  .hero__actions { flex-direction: row; justify-content: center; }
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(232, 232, 236, 0.15);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-accent);
  animation: scrollLine 2s ease-in-out infinite;
}


/* ============================================================
   7. ARTISTS / COLECTIVO SECTION
   ============================================================ */
.section--colectivo {
  background: 
    linear-gradient(180deg, var(--c-bg) 0%, rgba(18, 18, 20, 0.5) 50%, var(--c-bg) 100%);
}

.artists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}

@media (min-width: 600px) { .artists-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .artists-grid { grid-template-columns: repeat(3, 1fr); } }

/* Artist Card */
.artist-card {
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
}

.artist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192, 192, 200, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.artist-card__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--c-bg);
}

.artist-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.artist-card:hover .artist-card__image {
  transform: scale(1.05);
}

.artist-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  background: 
    radial-gradient(ellipse at center, rgba(139, 26, 26, 0.05) 0%, transparent 70%),
    var(--c-bg);
}

.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--sp-md);
  opacity: 0;
  transition: opacity var(--t-normal);
}

.artist-card:hover .artist-card__overlay { opacity: 1; }

.artist-card__info {
  padding: var(--sp-md);
}

.artist-card__name {
  font-size: 1.8rem;
  margin-bottom: 0.15rem;
}

.artist-card__handle {
  display: block;
  font-size: 0.8rem;
  color: var(--c-accent);
  font-weight: 500;
  margin-bottom: var(--sp-xs);
  transition: color var(--t-fast);
  text-decoration: none;
}

span.artist-card__handle {
  color: var(--c-text-muted);
  opacity: 0.6;
  letter-spacing: 0.06em;
}

a.artist-card__handle:hover {
  color: var(--c-accent-hover);
  text-decoration: underline;
}

.artist-card__specialty {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
  padding: var(--sp-2xs) var(--sp-xs);
  background: rgba(232, 232, 236, 0.05);
  border: 1px solid rgba(232, 232, 236, 0.1);
  margin-bottom: var(--sp-sm);
}

.artist-card__book-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}

.artist-card__book-btn:hover { color: var(--c-accent); }


/* ============================================================
   8. GALLERY SECTION
   ============================================================ */
.section--galeria {
  background: var(--c-bg);
}

/* Filter buttons */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: var(--sp-sm);
  margin-bottom: var(--sp-lg);
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .gallery-filters { justify-content: center; flex-wrap: wrap; }
}

.gallery-filters__btn {
  white-space: nowrap;
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  color: var(--c-text-muted);
  transition: all var(--t-fast);
}

.gallery-filters__btn:hover {
  border-color: var(--c-text-muted);
  color: var(--c-text);
}

.gallery-filters__btn--active {
  background: var(--c-text);
  color: var(--c-bg);
  border-color: var(--c-text);
}

/* Gallery Grid — CSS Grid Masonry-like */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xs);
}

@media (min-width: 768px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-sm); } }
@media (min-width: 1280px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  background: var(--c-bg-elevated);
  transition: opacity var(--t-normal), transform var(--t-normal);
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  color: var(--c-text-muted);
  background:
    linear-gradient(135deg, rgba(139, 26, 26, 0.03) 0%, transparent 50%),
    var(--c-bg-elevated);
}

.gallery-item__placeholder-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.2;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__category {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-accent);
}

.gallery-item__artist {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--c-text);
}


/* ============================================================
   9. LIGHTBOX / MODAL
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-normal);
}

.lightbox--active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  font-size: 1.8rem;
  color: var(--c-text);
  z-index: 2;
  transition: color var(--t-fast), transform var(--t-fast);
}

.lightbox__close:hover {
  color: var(--c-accent);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--c-text-muted);
  z-index: 2;
  transition: color var(--t-fast);
  padding: var(--sp-sm);
}

.lightbox__nav:hover { color: var(--c-text); }
.lightbox__nav--prev { left: var(--sp-sm); }
.lightbox__nav--next { right: var(--sp-sm); }

.lightbox__content {
  text-align: center;
  max-width: 700px;
  padding: var(--sp-xl) var(--sp-lg);
}

.lightbox__image-wrap {
  margin-bottom: var(--sp-md);
}

.lightbox__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  width: 100%;
  min-height: 300px;
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}

.lightbox__title {
  font-size: 2rem;
  margin-bottom: var(--sp-xs);
}

.lightbox__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  color: var(--c-text-muted);
  font-size: 0.85rem;
}

.lightbox__category {
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.75rem;
}


/* ============================================================
   10. QUOTER / WHATSAPP SECTION
   ============================================================ */
.section--cotizar {
  background:
    linear-gradient(180deg, var(--c-bg) 0%, rgba(18, 18, 20, 0.5) 50%, var(--c-bg) 100%);
}

.quoter {
  max-width: 700px;
  margin: 0 auto;
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-border);
  padding: var(--sp-lg);
}

@media (min-width: 768px) { .quoter { padding: var(--sp-xl); } }

.quoter__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.quoter__field { position: relative; }

.quoter__field--error {
  animation: shake 0.4s ease;
}

.quoter__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-metallic);
  margin-bottom: var(--sp-sm);
}

.quoter__label i {
  color: var(--c-accent);
  font-size: 1.1rem;
}

/* Custom Select */
.quoter__select-wrap {
  position: relative;
}

.quoter__select {
  width: 100%;
  padding: 0.9rem 1rem;
  padding-right: 2.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  color: var(--c-text);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--t-fast);
}

.quoter__select:focus {
  outline: none;
  border-color: var(--c-accent);
}

.quoter__select option {
  background: var(--c-bg-elevated);
  color: var(--c-text);
}

.quoter__select-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

/* Body Zone Buttons */
.quoter__zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (min-width: 600px) {
  .quoter__zones { grid-template-columns: repeat(4, 1fr); }
}

.quoter__zone-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.7rem 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  transition: all var(--t-fast);
  cursor: pointer;
}

.quoter__zone-icon { font-size: 1.2rem; }

.quoter__zone-btn:hover {
  border-color: var(--c-text-muted);
  color: var(--c-text);
}

.quoter__zone-btn--selected {
  border-color: var(--c-accent) !important;
  background: rgba(139, 26, 26, 0.15);
  color: var(--c-text);
}

/* Size Selector */
.quoter__sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.quoter__size-card {
  cursor: pointer;
}

.quoter__size-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quoter__size-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 0.5rem;
  border: 1px solid var(--c-border);
  border-radius: 2px;
  text-align: center;
  transition: all var(--t-fast);
}

.quoter__size-visual {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}

.quoter__size-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quoter__size-desc {
  font-size: 0.65rem;
  color: var(--c-text-muted);
}

.quoter__size-radio:checked + .quoter__size-content {
  border-color: var(--c-accent);
  background: rgba(139, 26, 26, 0.12);
}

.quoter__size-radio:checked + .quoter__size-content .quoter__size-visual {
  color: var(--c-accent);
}

.quoter__size-card:hover .quoter__size-content {
  border-color: var(--c-text-muted);
}

/* Submit area */
.quoter__submit {
  text-align: center;
}

.quoter__disclaimer {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  margin-top: var(--sp-sm);
}


/* ============================================================
   11. FAQ / ACCORDION SECTION
   ============================================================ */
.section--faq {
  background: var(--c-bg);
}

.accordion {
  max-width: 750px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--c-border);
  border-left: 2px solid transparent;
  transition: border-color var(--t-fast);
}

.accordion__item--open {
  border-left-color: var(--c-accent);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-sm);
  text-align: left;
  transition: color var(--t-fast);
}

.accordion__header:hover { color: var(--c-accent); }

.accordion__question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.accordion__question i {
  color: var(--c-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.accordion__icon {
  font-size: 1rem;
  color: var(--c-text-muted);
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-normal);
}

.accordion__body {
  padding: 0 var(--sp-sm) var(--sp-md) calc(var(--sp-sm) + 1.95rem);
}

.accordion__body p {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}


/* ============================================================
   12. CONTACT / UBICACIÓN SECTION
   ============================================================ */
.section--contacto {
  background:
    linear-gradient(180deg, var(--c-bg) 0%, rgba(18, 18, 20, 0.4) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Map */
.contact-map {
  border: 1px solid var(--c-border);
  overflow: hidden;
  min-height: 350px;
}

.contact-map__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  width: 100%;
  height: 100%;
  min-height: 350px;
  background: var(--c-bg-elevated);
  color: var(--c-text-muted);
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.contact-info__card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: var(--sp-md);
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-border);
  transition: border-color var(--t-fast);
}

.contact-info__card:hover {
  border-color: rgba(192, 192, 200, 0.15);
}

.contact-info__icon {
  font-size: 1.3rem;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-info__title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.06em;
}

.contact-info__text {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.contact-info__link {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}

.contact-info__link:hover { color: var(--c-accent); }

.contact-info__ig-btn {
  margin-top: var(--sp-xs);
}


/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--c-border);
  padding: var(--sp-lg) 0;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  text-align: center;
}

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__brand-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

@media (max-width: 767px) {
  .footer__brand-header {
    justify-content: center;
  }
}

.footer__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}

.footer__logo {
  font-family: var(--f-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__location {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

@media (max-width: 767px) {
  .footer__location {
    justify-content: center;
  }
}

.footer__city {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer__city i,
.footer__address-badge i {
  color: var(--c-accent);
}

.footer__address-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.65rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  font-size: 0.7rem;
  color: var(--c-text);
  letter-spacing: 0.04em;
}

.footer__tagline {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer__credit {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.footer__credit-link {
  color: var(--c-text);
  font-weight: 600;
  transition: color var(--t-fast);
}

.footer__credit-link:hover { color: var(--c-accent); }

.footer__legal {
  font-size: 0.7rem;
  color: var(--c-text-muted);
}


/* ============================================================
   14. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll Reveal */
.animate-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-in--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   15. CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--c-smoke); }

/* Firefox */
* { scrollbar-width: thin; scrollbar-color: var(--c-border) var(--c-bg); }


/* ============================================================
   16. RESPONSIVE FINE-TUNING
   ============================================================ */
@media (max-width: 479px) {
  .hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .btn--lg { padding: 0.85rem 1.5rem; font-size: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .quoter { padding: var(--sp-md); }
  .quoter__zones { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 480px) and (max-width: 767px) {
  .gallery-grid { gap: 6px; }
}

/* Hover only on devices that support it */
@media (hover: none) {
  .artist-card__overlay { opacity: 1; }
  .gallery-item__overlay { opacity: 1; background: rgba(10, 10, 12, 0.5); }
}
