/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background var(--duration-base) var(--ease-out),
              backdrop-filter var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

#nav.is-scrolled {
  background: rgba(12,11,9,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#nav.is-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a:not(.nav-cta) {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.625rem 1.5rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: transform var(--duration-fast) var(--ease-out), opacity var(--duration-fast) var(--ease-out);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-overlay);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-md);
  right: 6%;
  color: var(--color-text-light);
  width: 48px;
  height: 48px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.mobile-nav-links a:not(.btn-primary) {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ===== HERO (full-viewport background image) ===== */
#hero {
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

#hero .hero-content-wrap {
  padding-inline: clamp(1.25rem, 3%, 2.5rem);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 14%, rgba(8,7,5,1) 0%, rgba(8,7,5,0.75) 55%, transparent 100%),
    linear-gradient(to bottom, rgba(8,7,5,0.82) 0%, rgba(8,7,5,0.5) 22%, transparent 45%),
    linear-gradient(to right, rgba(8,7,5,0.75) 0%, rgba(8,7,5,0.42) 55%, rgba(8,7,5,0.08) 100%);
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(84px + 2rem);
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
}

.hero-logo-block {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  align-self: flex-start;
}

.hero-logo {
  width: clamp(260px, 28vw, 420px);
  height: auto;
  display: block;
}

.hero-logo-rule {
  border: none;
  border-top: 1px solid rgba(240,235,226,0.35);
  margin: 0.55rem 0;
}

.hero-bottom {
  max-width: 680px;
}

.hero-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.25);
  width: 48px;
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text-light);
  overflow-wrap: break-word;
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 400;
  color: rgba(200,198,194,0.72);
  margin-top: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.hero-subline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(240,235,226,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: justify;
  text-align-last: justify;
  margin-top: 0;
  width: 100%;
}

.hero-cta-row {
  display: flex;
  gap: 1.25rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-text-light);
  opacity: 0.5;
  animation: hero-scroll-fade 3s forwards;
}

@keyframes hero-scroll-fade {
  0%   { opacity: 0.5; }
  80%  { opacity: 0.5; }
  100% { opacity: 0; visibility: hidden; }
}

@media (max-width: 768px) {
  #hero {
    height: 100svh;
  }

  .hero-overlay {
    background: rgba(8,7,5,0.65);
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-cta-row {
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
  }
}

/* ===== FILOSOFIA ===== */
#filosofia {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.filosofia-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-2xl);
  align-items: start;
}

.filosofia-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
  margin-bottom: 1.5rem;
}

.filosofia-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-text-dark-muted);
  flex-shrink: 0;
}

.filosofia-display {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.filosofia-display em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-dark);
}

.filosofia-right {
  padding-top: clamp(2.5rem, 4vw, 4rem);
}

.filosofia-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-base);
  color: var(--color-text-dark-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.filosofia-rule {
  border: none;
  border-top: 1px solid rgba(26,23,20,0.12);
  margin: var(--space-lg) 0;
}

.filosofia-statement {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text-dark);
}

.filosofia-statement-em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: var(--text-base);
  color: var(--color-text-dark-muted);
  display: block;
  margin-top: 0.25rem;
}

.filosofia-stats {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--color-text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  max-width: 12ch;
}

@media (max-width: 768px) {
  .filosofia-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .filosofia-right {
    padding-top: 0;
  }
  .filosofia-display {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* ===== CATALOGO ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  min-height: 48px;
  transition: color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.filter-btn:hover {
  color: var(--color-text-light);
}

.filter-btn.is-active {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.product-card {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  cursor: pointer;
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.product-card.is-filtered-out {
  opacity: 0;
  transform: scale(0.97);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  background: var(--color-surface);
}

/* Card proportion variants — break grid symmetry */
.card-image-wrap.card--hero    { aspect-ratio: 1 / 1.85; }
.card-image-wrap.card--square  { aspect-ratio: 1 / 1; }
.card-image-wrap.card--portrait { aspect-ratio: 3 / 4; }

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-gold);
}

@media (hover: hover) {
  .product-card:hover .card-image-wrap img {
    transform: scale(1.04);
  }
  .product-card:hover .card-overlay {
    opacity: 1;
  }
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(12,11,9,0.88) 0%, rgba(12,11,9,0.05) 55%, transparent 100%);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.card-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-light);
}

.card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.placeholder-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: var(--space-md);
}

@media (hover: none) {
  .card-overlay {
    opacity: 0.75;
  }
}

/* ===== PRODUCT LIGHTBOX ===== */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}

#lightbox.is-open {
  display: block;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  animation: lightbox-fade 250ms var(--ease-out) forwards;
}

@keyframes lightbox-fade {
  to { opacity: 1; }
}

.lightbox-panel {
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 88vh;
  max-height: 88vh;
  background: var(--color-surface);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: lightbox-panel-in 350ms var(--ease-gold) forwards;
}

@keyframes lightbox-panel-in {
  to { opacity: 1; transform: translateY(0); }
}

.lightbox-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  background: rgba(12,11,9,0.55);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.lightbox-image-col {
  width: 52%;
  flex-shrink: 0;
  background: var(--color-bg);
  position: relative;
}

/* Gallery in left column */
.lb-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lb-gallery-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.lb-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 380ms var(--ease-out);
}

.lb-gallery-slide.is-active {
  opacity: 1;
}

.lb-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lb-gallery-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-gallery-empty img {
  width: 38%;
  opacity: 0.15;
}

.lb-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  background: rgba(12,11,9,0.55);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 200ms var(--ease-out);
}

.lb-gallery-btn:hover {
  background: rgba(12,11,9,0.85);
}

.lb-gallery-btn[hidden] {
  display: none;
}

.lb-gallery-prev { left: var(--space-sm); }
.lb-gallery-next { right: var(--space-sm); }

.lb-gallery-dots {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 3;
}

.lb-gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  transition: background 200ms, transform 200ms;
  flex-shrink: 0;
}

.lb-gallery-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

.lightbox-content-col {
  width: 48%;
  padding: var(--space-lg) calc(var(--space-lg) + 0.25rem) var(--space-lg) var(--space-lg);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lightbox-product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-text-light);
  line-height: 1.15;
}

.lightbox-descriptor {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  line-height: 1.55;
}

.lightbox-on-order {
  margin-top: 0.875rem;
}

.on-order-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(200,169,110,0.45);
  padding: 0.35rem 0.75rem;
}

.spec-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.lightbox-colors {
  margin-top: var(--space-md);
}

.color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.color-chip {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-dark);
  background: var(--color-cream);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}


.lightbox-cta-pair {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: var(--space-lg);
}

.lightbox-cta-whatsapp {
  flex: 1;
  justify-content: center;
  background: #1b4a28;
  color: rgba(190,230,205,0.9);
  border: 1px solid #2a5e34;
  border-radius: 100px;
  box-shadow: none;
  min-height: 42px;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
}

.lightbox-cta-whatsapp:hover {
  background: #224f2c;
  filter: none;
  box-shadow: none;
}

.lightbox-cta-catalog {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.5rem 0.75rem;
  min-height: 42px;
  transition: color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}

.lightbox-cta-catalog:hover {
  color: var(--color-text-light);
  border-color: rgba(255,255,255,0.22);
}

.lightbox-material-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: var(--space-sm);
  display: block;
  background: var(--color-surface-hover);
  flex-shrink: 0;
}

.lightbox-material-img[hidden] {
  display: none;
}

@media (max-width: 768px) {
  .lightbox-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .lightbox-panel {
    flex-direction: column;
    max-height: 95vh;
    height: 95vh;
    border-radius: 16px 16px 0 0;
  }
  .lightbox-image-col,
  .lightbox-content-col {
    width: 100%;
  }
  .lightbox-image-col {
    height: 40vh;
    flex-shrink: 0;
  }
  .lightbox-content-col {
    flex: 1;
  }
}


/* ===== CATALOGO COMPLETO ===== */
.catalogo-completo-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-2xl);
  align-items: center;
}

.catalogo-completo-image {
  display: flex;
  justify-content: center;
}

.catalogo-cover-img {
  width: 100%;
  max-width: 340px;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  transform: rotate(-1.5deg);
  transition: transform 500ms var(--ease-gold), box-shadow 500ms var(--ease-gold);
}

@media (hover: hover) {
  .catalogo-cover-img:hover {
    transform: rotate(0deg);
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  }
}

.catalogo-completo-content .section-heading {
  font-size: var(--text-xl);
}

.catalogo-download-btn {
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .catalogo-completo-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
  }
  .catalogo-download-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== NOVEDADES (promo layout — two-column) ===== */
.novedades-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-2xl);
  align-items: center;
}

.novedades-head {
  display: flex;
  flex-direction: column;
}

.novedades-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
  margin-bottom: 1rem;
}

.novedades-display {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.1;
}

.novedades-em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-dark);
}

.novedades-caption-area {
  margin-top: var(--space-lg);
}

.novedades-caption {
  display: none;
}

.novedades-caption.is-active {
  display: block;
}

.novedades-caption-date {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-dark-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.novedades-caption-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.375rem;
}

.novedades-caption-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.novedades-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 600px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-cream-deep);
}

.novedades-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
}

.novedades-slide.is-active {
  opacity: 1;
}

.novedades-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.novedades-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream-deep);
}

.novedades-slide-placeholder img {
  width: 36%;
  height: auto;
  object-fit: contain;
  opacity: 0.3;
}

.novedades-dots {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.novedades-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(20,17,14,0.35);
  transition: background 250ms var(--ease-out), transform 250ms var(--ease-out);
  cursor: pointer;
}

.novedades-dot.is-active {
  background: var(--color-text-dark);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .novedades-promo {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .novedades-head {
    order: 2;
  }
  .novedades-frame {
    order: 1;
    aspect-ratio: 4 / 3;
    max-height: 360px;
  }
  .novedades-display {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* ===== SHOWROOM ===== */
.showroom-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 640px;
}

.showroom-info {
  padding: var(--space-xl) 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showroom-heading {
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.showroom-block {
  margin-bottom: var(--space-md);
}

.showroom-icon-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.showroom-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.6;
}

.showroom-maps-btn {
  display: inline-flex;
  margin-top: 0.875rem;
  font-size: 0.78rem;
  padding: 0.625rem 1.25rem;
  min-height: 38px;
}

.showroom-cta-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  max-width: 320px;
}

.showroom-cta-row a {
  justify-content: center;
}

/* Dim WhatsApp button — same ghost style as lightbox cotizar */
.btn-whatsapp-dim {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  min-height: 48px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  background: #1b4a28;
  color: rgba(190,230,205,0.85);
  border: 1px solid #2a5e34;
  border-radius: 0;
  transition: background 180ms ease, color 180ms ease;
}
.btn-whatsapp-dim:hover {
  background: #214f2d;
  color: rgba(210,240,220,0.95);
}

.showroom-photo-col {
  position: relative;
  overflow: hidden;
}

.showroom-photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.showroom-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(12,11,9,0.80) 0%, transparent 100%);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .showroom-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .showroom-info {
    padding: var(--space-xl) 6%;
  }
  .showroom-photo-col {
    order: -1;
  }
  .showroom-photo {
    min-height: 300px;
  }
}

/* ===== FOOTER ===== */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-lg);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 200ms var(--ease-out);
}

.footer-col a:hover {
  color: var(--color-text-light);
}

.footer-col-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.375rem;
}

.footer-logo {
  height: auto;
  width: 140px;
  max-width: 100%;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline,
.footer-copyright,
.footer-address {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  margin-top: var(--space-2xl);
  padding-top: var(--space-md);
}

.footer-bottom p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Social links with inline SVG brand icons */
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-link svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  opacity: 0.7;
  transition: opacity 200ms var(--ease-out);
}

.footer-social-link:hover svg {
  opacity: 1;
}
