/* ═══════════════════════════════════════════════
   J. Garcia Construction - Version 2
   Editorial / Story-Driven Professional Brand
   ═══════════════════════════════════════════════ */

:root {
  --red: #D32F2F;
  --black: #121212;
  --white: #FFFFFF;
  --gray-light: #F9F9F9;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
}

.container-v2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.label-red {
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.label-red.center { text-align: center; }

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* ── NAVIGATION ── */

.v2-nav {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid #EEE;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-v2 .mark {
  background: var(--red);
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  border-radius: 4px;
}

.logo-v2 .text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
}

.logo-v2 .text span {
  font-size: 9px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 2px;
}

.nav-links-v2 a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 13px;
  margin-left: 32px;
  transition: color 0.3s;
}

.nav-links-v2 a:hover { color: var(--red); }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
}

/* ── HERO ── */

.v2-hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.v2-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
}

.v2-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.v2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.v2-hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.v2-hero .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.v2-hero h1 {
  font-size: clamp(48px, 10vw, 84px);
  line-height: 0.9;
  margin-bottom: 32px;
}

.v2-hero h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--red);
}

.v2-hero p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
}

.hero-actions-v2 {
  display: flex;
  gap: 16px;
}

.v2-btn-solid {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 18px 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 4px;
}

.v2-btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  text-decoration: none;
  padding: 18px 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 4px;
  transition: background 0.3s;
}

.v2-btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ── TRUST BAR ── */

.v2-trust-bar {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid #EEE;
}

.trust-flex-v2 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item-v2 {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

.trust-item-v2 span { color: var(--red); margin-right: 8px; }

/* ── STORY ── */

.v2-story {
  padding: 120px 0;
}

.story-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
}

.portrait-main {
  width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.story-stats {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: var(--red);
  color: var(--white);
  padding: 40px;
  display: flex;
  gap: 40px;
  border-radius: 4px;
}

.stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
}

.stat span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-text-v2 h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.story-text-v2 .lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.story-body p {
  margin-bottom: 20px;
  color: var(--text-body);
}

.quote-v2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  color: var(--red);
  margin-top: 40px;
  border-left: 5px solid var(--red);
  padding-left: 32px;
}

/* ── SERVICES ── */

.v2-services {
  background: var(--gray-light);
  padding: 120px 0;
}

.section-h-v2 {
  margin-bottom: 80px;
}

.section-h-v2 h2 {
  font-size: 48px;
  text-align: center;
}

.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.svc-v2 {
  background: var(--white);
  padding: 64px 40px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}

.svc-v2:hover { transform: translateY(-10px); }

.svc-icon-v2 {
  font-size: 48px;
  margin-bottom: 24px;
}

.svc-v2 h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

/* ── SHOWCASE ── */

.v2-showcase { padding: 120px 0; }

.gallery-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gal-v2 {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.gal-v2.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gal-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gal-v2:hover img { transform: scale(1.05); }

/* ── CONTACT ── */

.v2-contact { padding: 120px 0; background: var(--black); }

.contact-card-v2 {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
}

.contact-info-v2 {
  padding: 80px;
}

.contact-info-v2 h2 { font-size: 40px; margin-bottom: 16px; }

.contact-links-v2 {
  margin-top: 48px;
}

.contact-item-v2 {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 24px;
}

.contact-item-v2 strong {
  font-size: 20px;
  color: var(--text-dark);
}

.contact-item-v2 span {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
}

.contact-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FOOTER ── */

.v2-footer {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid #EEE;
}

.footer-flex-v2 {
  display: flex;
  justify-content: space-between;
}

.footer-brand strong {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: var(--text-dark);
}

.footer-legal { text-align: right; font-size: 13px; color: var(--text-body); }

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  .story-grid-v2, .services-grid-v2, .contact-card-v2 { grid-template-columns: 1fr; }
  .v2-hero-bg { width: 100%; opacity: 0.3; }
  .v2-hero-content { text-align: center; }
  .hero-actions-v2 { justify-content: center; }
  .story-stats { position: relative; bottom: 0; right: 0; margin-top: 20px; }
  .footer-flex-v2 { flex-direction: column; text-align: center; gap: 40px; }
  .footer-legal { text-align: center; }
}
