/* ============================================================
   home.css
   Hero · Stats · About Grid · MVV · Services Grid
   Loaded on: index.html only
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────────── */

.hero {
  min-height: 91vh;
  background: var(--crimson);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 9% 7% 9% 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-left .eyebrow { 
  margin-bottom: 24px; 
  color: var(--amber); 
}
.hero-left .eyebrow::before { 
  background: var(--amber); 
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 5.5vw, 82px);
  font-weight: 600;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 24px;
}
.hero-title em { 
  font-style: italic; 
  color: var(--amber); 
}
.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 430px;
  margin-bottom: 44px;
}
.hero-buttons { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
}
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-geo {
  position: absolute;
  inset: 0; 
  width: 100%; 
  height: 100%;
}

/* HERO STATS */

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: auto 52px 52px;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-cell {
  background: rgba(0,0,0,0.18);
  padding: 26px 22px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.stat-cell:hover { background: rgba(255,255,255,0.08); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ABOUT GRID (homepage)  */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-block {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--crimson);
  position: relative;
  overflow: hidden;
}
.about-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(255,255,255,0.06) 24px, rgba(255,255,255,0.06) 25px),
    repeating-linear-gradient(-45deg, transparent, transparent 24px, rgba(255,255,255,0.03) 24px, rgba(255,255,255,0.03) 25px);
}
.about-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.about-since {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.about-accent-line {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 52%; height: 52%;
  border: 2px solid var(--amber);
  z-index: -1;
}
.about-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* MISSION / VISION / PRIORITIES */

.mvv-section {
  background: var(--crimson);
  padding: 96px 9%;
}
.mvv-section .eyebrow { color: var(--amber); }
.mvv-section .eyebrow::before { background: var(--amber); }
.mvv-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 52px;
}
.mvv-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2px; 
}
.mvv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 40px 32px;
  position: relative;
  transition: background 0.35s;
}
.mvv-card:hover { background: rgba(255,255,255,0.09); }
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 52px; height: 3px;
  background: var(--amber);
}
.mvv-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 4px;
}
.mvv-label {
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.mvv-text { 
  font-size: 15px; 
  line-height: 1.8; 
  color: rgba(255,255,255,0.72); 
}

/* SERVICES GRID (homepage) */

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.svc-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 2px; 
}
.svc-card {
  display: block;
  color: inherit;
  background: var(--cream);
  padding: 48px 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.25s;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--crimson);
  transition: width 0.45s ease;
}
.svc-card:hover { 
  background: #fff; 
  transform: translateY(-5px); 
}
.svc-card:hover::after { width: 100%; }
.svc-icon {
  width: 52px; height: 52px;
  background: var(--crimson);
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 24px;
}
.svc-icon svg {
  width: 22px; 
  height: 22px;
  stroke: #fff; 
  fill: none;
  stroke-width: 1.5; 
  stroke-linecap: round; 
  stroke-linejoin: round;
}
.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: var(--crimson); margin-bottom: 12px;
}
.svc-card p { font-size: 15px; 
  color: var(--muted); 
  margin-bottom: 20px; 
}
.svc-link {
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  display: flex; align-items: center; gap: 6px;
}
.svc-arrow {
  width: 14px; 
  height: 14px;
  stroke: var(--amber); 
  fill: none;
  stroke-width: 2; 
  stroke-linecap: round; 
  stroke-linejoin: round;
  transition: transform 0.2s;
}
.svc-card:hover .svc-arrow { transform: translateX(4px); }

/* RESPONSIVE  */

@media (max-width: 900px) {
  .hero                { grid-template-columns: 1fr; }
  .hero-right          { display: none; }
  .hero-left           { padding: 80px 5%; }
  .about-grid          { grid-template-columns: 1fr; gap: 48px; }
  .mvv-grid            { grid-template-columns: 1fr; }
  .mvv-section         { padding: 64px 5%; }
  .svc-grid            { grid-template-columns: 1fr; }
  .services-head       { flex-direction: column; align-items: flex-start; gap: 24px; }
}
