/* ============================================================
   SILVINA AGUIRRE — style.css
   Paleta: crema cálida + burdeos + acero
   Tipografías: Lobster (nombre) + Montserrat (cuerpo)
   ============================================================ */

:root {
  --cream:        #f5f0eb;
  --cream-dark:   #ede6dd;
  --burgundy:     #7a2d3e;
  --burgundy-lt:  #9e3d52;
  --steel:        #8a9ba8;
  --steel-dark:   #4a5c68;
  --text:         #2c2420;
  --text-light:   #6b5a52;
  --white:        #ffffff;
  --shadow:       rgba(106, 59, 35);
  --shadow-deep:  rgba(44, 36, 32, 0.30);

  --font-name:    'Lobster', cursive;
  --font-body:    'Montserrat', sans-serif;

  --radius:       4px;
  --transition:   0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }
.bg-light { background: var(--cream-dark); }

/* ============================================================
   LANGUAGE BAR
   ============================================================ */
.lang-bar {
  background: var(--burgundy);
  text-align: right;
  padding: 0.4rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color var(--transition);
  padding: 0 0.25rem;
}

.lang-btn.active,
.lang-btn:hover { color: var(--white); }

.lang-sep { color: rgba(255,255,255,0.3); margin: 0 0.2rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--burgundy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-identity {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-name {
  font-family: var(--font-name);
  font-size: 2.2rem;
  color: var(--burgundy);
  text-shadow: 1px 2px 6px var(--shadow);
  letter-spacing: 0.02em;
}

.header-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.1rem;
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--burgundy);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--burgundy); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.75) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(122, 45, 62, 0.55) 0%,
    rgba(44, 36, 32, 0.25) 50%,
    rgba(44, 36, 32, 0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 0 2.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.04em;
    text-shadow: 2px 1px 4px #000000;
    max-width: 620px;
    line-height: 1.5;
    border-left: 3px solid rgba(255,255,255,0.6);
    padding-left: 1.2rem;
}

/* ============================================================
   PHOTO PRINT EFFECT
   ============================================================ */
.photo-print {
  border: 8px solid var(--white);
  box-shadow: 3px 4px 18px var(--shadow-deep);
  border-radius: var(--radius);
}

/* ============================================================
   INTRO
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-title.centered { text-align: center; }

.intro-body {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.intro-image-wrap {
  display: flex;
  justify-content: center;
}

.intro-image-wrap .photo-print {
  transform: rotate(1.2deg);
  transition: transform var(--transition);
  max-height: 340px;
  object-fit: cover;
  width: 100%;
}

.intro-image-wrap .photo-print:hover {
  transform: rotate(0deg) scale(1.02);
}

/* ============================================================
   STRIP DIVIDER
   ============================================================ */
.strip-divider {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(0.6);
}

.strip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 45, 62, 0.3);
}

.strip-quote {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  max-width: 600px;
  padding: 0 2rem;
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 2px 3px 14px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 8px 24px var(--shadow-deep);
}

.service-img-wrap {
  height: 200px;
  overflow: hidden;
}

.service-img-wrap .photo-print {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap .photo-print {
  transform: scale(1.04);
}

.service-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding: 1.2rem 1.5rem 0.5rem;
}

.service-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.75;
}

/* ============================================================
   INDUSTRY
   ============================================================ */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.industry-images {
  position: relative;
  height: 380px;
}

.industry-img-main {
  width: 85%;
  height: 280px;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  transform: rotate(-1.5deg);
}

.industry-img-small {
  width: 55%;
  height: 180px;
  object-fit: cover;
  position: absolute;
  bottom: 0; right: 0;
  transform: rotate(2deg);
  z-index: 2;
}

.industry-body {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.btn-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}

.btn-link:hover { opacity: 0.65; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--burgundy); }

.contact .section-title { color: var(--white); }

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.contact-sub {
  font-size: 0.97rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}

.btn-contact {
  display: inline-block;
  background: var(--white);
  color: var(--burgundy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.85rem 2.5rem;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}

.btn-contact:hover {
  background: var(--cream);
}

.contact-location {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  padding: 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--font-name);
  font-size: 1.4rem;
  color: var(--burgundy-lt);
}

.footer-copy {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .intro-grid,
  .industry-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .hero { height: 320px; }
  .hero-content { padding: 0 0 2rem 2rem; }
  .hero-tagline { font-size: 1.1rem; }

  .industry-images { height: 260px; }
  .industry-img-main { width: 80%; height: 200px; }
  .industry-img-small { width: 50%; height: 140px; }
}

@media (max-width: 600px) {
  .header-inner { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .header-name { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { height: 260px; }
  .section { padding: 3rem 0; }
}
