html { scroll-behavior: smooth; }
body { font-family: Inter, system-ui, sans-serif; color: #0F090F; }
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; letter-spacing: -0.01em; }

.nav-link {
  position: relative;
  text-decoration: none;
  transition: color 0.4s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s ease;
}
.nav-link:hover::after,
.nav-dropdown.is-open > .nav-dropdown-trigger.nav-link::after { width: 100%; }

.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.card-hover { transition: transform 0.45s ease, box-shadow 0.45s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15, 9, 15, 0.08); }

.btn-cta { transition: transform 0.35s ease, background-color 0.35s ease; }
.btn-cta:hover { transform: scale(1.03); background-color: #353535; }

.btn-outline { transition: background-color 0.4s ease, color 0.4s ease, transform 0.35s ease; }
.btn-outline:hover { background-color: rgba(255,255,255,0.12); transform: scale(1.02); }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(15, 9, 15, 0.14), 0 0 0 0 rgba(15, 9, 15, 0.1); }
  50% { box-shadow: 0 4px 20px rgba(15, 9, 15, 0.14), 0 0 0 10px rgba(15, 9, 15, 0); }
}
.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #F4F4F5;
  color: #3D3D3D;
  border: 1px solid #E9E9EB;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(15, 9, 15, 0.14);
  transition: transform 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
  animation: whatsapp-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  background: #fff;
  border-color: #D8D8DA;
}
.whatsapp-float svg { width: 1.75rem; height: 1.75rem; opacity: 0.88; }

@keyframes scroll-bounce {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}
.scroll-hint { animation: scroll-bounce 2.4s ease-in-out infinite; }

#sticky-nav {
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}
#sticky-nav.show { transform: translateY(0); }

.transition-colors { transition-duration: 0.4s !important; }
.transition-transform { transition-duration: 0.5s !important; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C8874A;
}

.brand-logo {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-logo--light { filter: brightness(0) invert(1); }
.brand-logo--dark { filter: brightness(0); }

/* Marca: Galce Carpinteros mismo color */
.font-display span.text-wood { color: inherit; }

[id] { scroll-margin-top: 5.5rem; }

/* Dropdown — puente invisible para que no se cierre al mover el ratón */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-dropdown-trigger {
  list-style: none;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  padding: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 100;
  min-width: 100%;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-panel {
  width: 34rem;
  max-width: calc(100vw - 2rem);
  border-radius: 1rem;
  padding: 0.625rem;
  overflow: hidden;
}

.nav-dropdown-panel__header {
  padding: 0.625rem 0.875rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  margin-bottom: 0.375rem;
}

.nav-dropdown-panel__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.375rem;
}

.nav-dropdown-panel__col {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.nav-dropdown-panel a {
  display: flex;
  align-items: center;
  min-height: 2.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.35s ease, color 0.35s ease;
  white-space: nowrap;
}

.nav-dropdown-panel--hero {
  background: rgba(15, 9, 15, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.nav-dropdown-panel--hero .nav-dropdown-panel__header {
  color: rgba(255, 255, 255, 0.45);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.nav-dropdown-panel--hero a { color: rgba(255, 255, 255, 0.9); }
.nav-dropdown-panel--hero a:hover,
.nav-dropdown-panel--hero a.is-active { background: rgba(255, 255, 255, 0.08); color: #fff; }
.nav-dropdown-panel--hero a.is-active { color: #C8874A; }

.nav-dropdown-panel--light {
  background: #fff;
  border: 1px solid #E9E9EB;
  box-shadow: 0 16px 40px rgba(15, 9, 15, 0.12);
}
.nav-dropdown-panel--light .nav-dropdown-panel__header {
  color: rgba(15, 9, 15, 0.45);
  border-bottom-color: #E9E9EB;
}
.nav-dropdown-panel--light a { color: #0F090F; }
.nav-dropdown-panel--light a:hover,
.nav-dropdown-panel--light a.is-active { background: #F4F4F5; color: #C8874A; }

.mobile-nav-group summary { cursor: pointer; list-style: none; }
.mobile-nav-group summary::-webkit-details-marker { display: none; }
.mobile-nav-group[open] summary .mobile-chevron { transform: rotate(180deg); }
.mobile-chevron { transition: transform 0.4s ease; }

.hero-header { overflow: visible; position: relative; z-index: 30; }

.hero-bg-img {
  object-position: 58% 42%;
  min-height: 100%;
  min-width: 100%;
}
@media (max-width: 1023px) {
  .hero-bg-img { object-position: 65% center; }
}
@media (max-width: 639px) {
  .hero-bg-img { object-position: 70% center; }
}

.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,9,15,0.92) 0%, rgba(15,9,15,0.55) 55%, rgba(15,9,15,0.35) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 3rem;
}

.content-placeholder {
  border: 2px dashed #E9E9EB;
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  background: #F4F4F5;
}

/* —— Páginas de subcategoría —— */
.category-intro {
  padding: 3rem 0 2.5rem;
  background: #fff;
}
.category-intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #0F090F;
}
.seo-intro {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(15, 9, 15, 0.72);
  max-width: 42rem;
}

.process-timeline {
  position: relative;
  padding: 3rem 0 1rem;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(to bottom, #C8874A, #E9E9EB);
  transform: translateX(-50%);
}
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
  position: relative;
}
.timeline-row:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #C8874A;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #C8874A;
  z-index: 2;
}
.timeline-step {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C8874A;
  margin-bottom: 0.5rem;
}
.timeline-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0F090F;
  margin-bottom: 0.5rem;
}
.timeline-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(15, 9, 15, 0.72);
}
.timeline-photo {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 32px rgba(15, 9, 15, 0.08);
}
.timeline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.timeline-photo:hover img { transform: scale(1.04); }
.timeline-row--left .timeline-copy { grid-column: 1; text-align: right; padding-right: 1rem; }
.timeline-row--left .timeline-photo { grid-column: 2; }
.timeline-row--right .timeline-copy { grid-column: 2; text-align: left; padding-left: 1rem; }
.timeline-row--right .timeline-photo { grid-column: 1; grid-row: 1; }

@media (max-width: 767px) {
  .process-timeline::before { left: 1.25rem; transform: none; }
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-left: 2.75rem;
  }
  .timeline-dot { left: 1.25rem; top: 1.5rem; transform: translate(-50%, 0); }
  .timeline-row--left .timeline-copy,
  .timeline-row--right .timeline-copy {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    padding: 0;
  }
  .timeline-row--left .timeline-photo,
  .timeline-row--right .timeline-photo { grid-column: 1; grid-row: 2; }
}

/* Carrusel infinito */
.marquee-section { overflow: hidden; padding: 2.5rem 0; background: #F4F4F5; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-group {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}
.marquee-item {
  flex-shrink: 0;
  width: 220px;
  height: 160px;
  border-radius: 0.875rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 9, 15, 0.08);
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .marquee-group:last-child { display: none; }
}

/* Carrusel de marcas (cocinas) */
.brands-marquee-wrap {
  padding: 2.25rem 0;
  background: #EBEBED;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .brands-marquee-wrap { padding: 2.75rem 0; }
}
.brands-marquee__track {
  display: flex;
  width: max-content;
  animation: brands-marquee-scroll 55s linear infinite;
}
.brands-marquee__track:hover { animation-play-state: paused; }
.brands-marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}
.brands-marquee__logo {
  flex-shrink: 0;
  height: 1.75rem;
  width: auto;
  max-width: 9rem;
  color: #7A747B;
  opacity: 0.88;
  filter: grayscale(1);
  transition: opacity 0.25s ease;
}
@media (min-width: 640px) {
  .brands-marquee__logo { height: 2rem; max-width: 10rem; }
}
.brands-marquee__logo:hover { opacity: 1; }
@keyframes brands-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brands-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 2rem 3rem;
    padding: 0 1.5rem;
  }
  .brands-marquee__group:last-child { display: none; }
}

/* CTA simulador FINSA */
.finsa-simulator-cta {
  padding: 3.5rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .finsa-simulator-cta { padding: 4.5rem 0; }
}
.finsa-simulator-cta__card {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 1.25rem;
  background: #F4F4F5;
  border: 1px solid #E9E9EB;
}
@media (min-width: 768px) {
  .finsa-simulator-cta__card {
    grid-template-columns: auto 1fr auto;
    gap: 2rem 2.5rem;
    padding: 2.25rem 2.5rem;
  }
}
.finsa-simulator-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(200, 135, 74, 0.12);
  color: #C8874A;
  flex-shrink: 0;
}
.finsa-simulator-cta__logo {
  height: 1.5rem;
  width: auto;
  opacity: 0.85;
}
.finsa-simulator-cta__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0F090F;
  line-height: 1.25;
}
@media (min-width: 640px) {
  .finsa-simulator-cta__title { font-size: 1.5rem; }
}
.finsa-simulator-cta__text {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(15, 9, 15, 0.68);
  max-width: 36rem;
}
.finsa-simulator-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.625rem;
}
@media (min-width: 768px) {
  .finsa-simulator-cta__actions { align-items: flex-end; }
}
.finsa-simulator-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  background: #3D3D3D;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.finsa-simulator-cta__btn:hover {
  background: #0F090F;
  transform: translateY(-1px);
}
.finsa-simulator-cta__note {
  font-size: 0.75rem;
  color: rgba(15, 9, 15, 0.45);
  text-align: center;
}
@media (min-width: 768px) {
  .finsa-simulator-cta__note { text-align: right; }
}

/* CTA conversión */
.lead-cta {
  background: #F4F4F5;
  color: #0F090F;
  padding: 4rem 0;
}
.lead-cta .lead-cta-form {
  background: #fff;
  border: 1px solid #E9E9EB;
  box-shadow: 0 8px 32px rgba(15, 9, 15, 0.04);
}
.lead-cta-form input,
.lead-cta-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #E9E9EB;
  background: #fff;
  color: #0F090F;
  font-size: 0.875rem;
  transition: border-color 0.35s ease;
}
.lead-cta-form input::placeholder,
.lead-cta-form textarea::placeholder { color: rgba(15, 9, 15, 0.4); }
.lead-cta-form input:focus,
.lead-cta-form textarea:focus {
  outline: none;
  border-color: #C8874A;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  background: #3D3D3D;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(15, 9, 15, 0.08);
  transition: transform 0.35s ease, background-color 0.35s ease;
}
.btn-whatsapp:hover { transform: scale(1.02); background: #353535; }
.btn-whatsapp svg { opacity: 0.92; }

footer.bg-ink {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.page-top-strip {
  position: relative;
  height: 28vh;
  min-height: 180px;
  max-height: 280px;
  overflow: hidden;
}
.page-top-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,9,15,0.35), rgba(15,9,15,0.75));
}

/* —— Landing Contract —— */
.contract-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}
.contract-hero__media {
  position: absolute;
  inset: 0;
}
.contract-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contract-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,9,15,0.88) 0%, rgba(15,9,15,0.62) 45%, rgba(15,9,15,0.78) 100%);
}
.contract-hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
}
.contract-stat-bar {
  position: relative;
  z-index: 10;
  background: rgba(15, 9, 15, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contract-stat {
  text-align: center;
  padding: 1.25rem 0.5rem;
}
.contract-stat__value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #C8874A;
  line-height: 1.1;
}
.contract-stat__label {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.contract-sector-card {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E9E9EB;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.35s ease;
  text-decoration: none;
  color: inherit;
}
.contract-sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 9, 15, 0.1);
  border-color: rgba(200, 135, 74, 0.35);
}
.contract-sector-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.contract-sector-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.contract-sector-card:hover .contract-sector-card__img img { transform: scale(1.05); }
.contract-sector-card__body { padding: 1.25rem 1.375rem 1.375rem; }
.contract-sector-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F090F;
}
.contract-sector-card__text {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(15, 9, 15, 0.68);
}
.contract-service-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #E9E9EB;
}
.contract-service-pill__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(200, 135, 74, 0.12);
  color: #C8874A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.contract-step {
  position: relative;
  padding-left: 3.25rem;
}
.contract-step__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #3D3D3D;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contract-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .contract-trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.contract-trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  background: #F4F4F5;
  border: 1px solid #E9E9EB;
}
.contract-trust-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C8874A;
  font-family: "Playfair Display", Georgia, serif;
}
.contract-trust-item span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: rgba(15, 9, 15, 0.65);
  line-height: 1.4;
}

/* Contract — CTA y footer suaves */
.lead-cta--contract {
  background: linear-gradient(180deg, #F4F4F5 0%, #fff 100%);
  color: #0F090F;
  padding: 5rem 0;
  border-top: 1px solid #E9E9EB;
}
.lead-cta--contract .section-label { color: #C8874A; }
.lead-cta--contract .lead-cta-form {
  background: #fff;
  border: 1px solid #E9E9EB;
  box-shadow: 0 8px 32px rgba(15, 9, 15, 0.04);
}
.lead-cta--contract .lead-cta-form input,
.lead-cta--contract .lead-cta-form textarea,
.lead-cta--contract .lead-cta-form select {
  border: 1px solid #E9E9EB;
  background: #fff;
  color: #0F090F;
}
.lead-cta--contract .lead-cta-form input::placeholder,
.lead-cta--contract .lead-cta-form textarea::placeholder {
  color: rgba(15, 9, 15, 0.4);
}
.lead-cta--contract .lead-cta-form input:focus,
.lead-cta--contract .lead-cta-form textarea:focus,
.lead-cta--contract .lead-cta-form select:focus {
  border-color: #C8874A;
  outline: none;
}
.lead-cta--contract .lead-cta-form label {
  color: rgba(15, 9, 15, 0.55);
}
.lead-cta--contract .lead-cta-form .form-note {
  color: rgba(15, 9, 15, 0.45);
}
.lead-cta--contract .contact-list {
  color: rgba(15, 9, 15, 0.72);
}
.lead-cta--contract .contact-list a {
  color: #0F090F;
  text-decoration: none;
  transition: color 0.35s ease;
}
.lead-cta--contract .contact-list a:hover { color: #C8874A; }
.lead-cta--contract .contact-list .contact-list__hint {
  color: rgba(15, 9, 15, 0.45);
}

.contract-footer {
  background: #fff;
  color: #0F090F;
  border-top: 1px solid #E9E9EB;
  padding: 3.5rem 0 2rem;
}
.contract-footer__title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 9, 15, 0.42);
  margin-bottom: 1rem;
}
.contract-footer a {
  color: rgba(15, 9, 15, 0.62);
  text-decoration: none;
  transition: color 0.35s ease;
}
.contract-footer a:hover { color: #C8874A; }
.contract-footer__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(15, 9, 15, 0.55);
}
.contract-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E9E9EB;
  font-size: 0.75rem;
  color: rgba(15, 9, 15, 0.4);
}
.contract-footer__bottom a { color: rgba(15, 9, 15, 0.5); }
.contract-footer__bottom a:hover { color: #C8874A; }

/* —— Landing Interiorismo —— */
.interior-gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.interior-gallery-filter {
  padding: 0.625rem 1.375rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(15, 9, 15, 0.65);
  background: #fff;
  border: 1px solid #E9E9EB;
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.interior-gallery-filter:hover {
  border-color: rgba(200, 135, 74, 0.45);
  color: #0F090F;
}
.interior-gallery-filter.is-active {
  background: #3D3D3D;
  border-color: #3D3D3D;
  color: #fff;
}
.interior-gallery__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .interior-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .interior-gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.interior-gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid #E9E9EB;
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}
.interior-gallery-item.is-hidden {
  display: none;
}
.interior-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.interior-gallery-item:hover img { transform: scale(1.05); }
.interior-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,9,15,0.82) 0%, rgba(15,9,15,0.15) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.interior-gallery-item:hover .interior-gallery-item__overlay,
.interior-gallery-item:focus-visible .interior-gallery-item__overlay { opacity: 1; }
.interior-gallery-item__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8874A;
  margin-bottom: 0.35rem;
}
.interior-gallery-item__caption {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.interior-gallery-item__hint {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}
.interior-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 9, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.interior-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.interior-lightbox__inner {
  position: relative;
  max-width: 56rem;
  width: 100%;
}
.interior-lightbox__inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.75rem;
}
.interior-lightbox__caption {
  margin-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}
.interior-lightbox__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.35s ease;
}
.interior-lightbox__close:hover { color: #fff; }
.interior-value-card {
  padding: 1.5rem 1.375rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #E9E9EB;
  height: 100%;
}
.interior-value-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F090F;
  margin-bottom: 0.5rem;
}
.interior-value-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(15, 9, 15, 0.68);
}

