/* ============================================================
   BROKEN CHAIN — home.css  (homepage only)
   ============================================================ */

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: brightness(0.5) saturate(0.7); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.15) 100%); }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, transparent 30%, rgba(10,10,10,0.65) 100%); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 100px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.eyebrow-line { display: block; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 168px);
  line-height: 0.9;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-title em { display: block; font-style: italic; font-weight: 400; color: var(--grey); font-size: 0.52em; margin-bottom: -0.05em; }
.hero-title strong { display: block; font-weight: 700; color: var(--cream); }

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--gold);
  margin-bottom: 14px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-sub {
  font-size: 16px;
  color: var(--grey);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; animation: fadeUp 0.7s ease 0.4s both; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.7s ease 0.5s both;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: fit-content;
}
.hm-item { display: flex; flex-direction: column; }
.hm-num { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--cream); line-height: 1; }
.hm-label { font-family: var(--font-head); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); }
.hm-div { width: 1px; height: 44px; background: var(--border-l); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-scroll span { font-family: var(--font-head); font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); writing-mode: vertical-lr; }
.scroll-bar { width: 1px; height: 52px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollBlink 2s ease-in-out infinite; }

/* ── HOME SERVICES ──────────────────────────────────────── */
.home-services {
  padding: 120px 0;
  background: var(--near);
  border-top: 1px solid var(--border);
}
.hs-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.hs-card {
  background: var(--card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 0.25s;
  cursor: pointer;
}
.hs-card:hover { background: #1c1c1c; }
.hs-card.hs-featured { background: #141414; border-top: 3px solid var(--gold); }
.hs-badge {
  position: absolute;
  top: -1px; left: 20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
}
.hs-icon { font-size: 28px; margin-bottom: 4px; }
.hs-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--cream); line-height: 1.2; }
.hs-card p { font-size: 13px; color: var(--grey); line-height: 1.6; flex: 1; }
.hs-price { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); margin-top: auto; }
.hs-arrow { font-size: 18px; color: var(--border-l); transition: color 0.2s, transform 0.2s; align-self: flex-end; }
.hs-card:hover .hs-arrow { color: var(--gold); transform: translateX(4px); }
.hs-cta { text-align: center; }

/* ── HOME TEAM ──────────────────────────────────────────── */
.home-team {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.ht-bg { position: absolute; inset: 0; z-index: 0; }
.ht-bg-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.12) saturate(0.3); }
.ht-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.75) 100%); }
.home-team .container { position: relative; z-index: 2; }

.ht-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.ht-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.ht-photo-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 16px;
}
.ht-photo { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border-l); aspect-ratio: 3/4; }
.ht-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(20%); transition: transform 0.5s ease; }
.ht-photo:hover img { transform: scale(1.04); }
.ht-photo-lg { aspect-ratio: 3/3; }

/* ── HOME GALLERY STRIP ─────────────────────────────────── */
.home-gallery { padding: 120px 0 0; background: var(--black); }
.hg-strip {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 3px;
  margin-top: 64px;
  margin-bottom: 0;
}
.hg-item { overflow: hidden; aspect-ratio: 3/4; position: relative; }
.hg-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) grayscale(15%); transition: transform 0.5s ease, filter 0.3s; }
.hg-item:hover img { transform: scale(1.06); filter: brightness(1) grayscale(0%); }
.hg-cta { text-align: center; padding: 48px 0 120px; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hs-grid { grid-template-columns: repeat(2,1fr); }
  .ht-photo-row { grid-template-columns: 1fr 1fr; }
  .ht-photo-lg { display: none; }
  .hg-strip { grid-template-columns: repeat(3,1fr); }
  .hg-item:nth-child(4), .hg-item:nth-child(5) { display: none; }
}
@media (max-width: 768px) {
  .hero-content { padding: 130px 24px 80px; }
  .hero-scroll { display: none; }
  .hs-grid { grid-template-columns: 1fr; }
  .ht-photo-row { grid-template-columns: 1fr; }
  .ht-photo-lg { display: block; }
  .hg-strip { grid-template-columns: repeat(2,1fr); }
  .hg-item:nth-child(4), .hg-item:nth-child(5) { display: block; }
  .ht-inner { flex-direction: column; align-items: flex-start; }
}
