/* ============================================
   DESIGNTECH INTERIORS — Hero Styles
   ============================================ */

/* ---- Homepage Hero ---- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../uploads/04-dark-luxury-office-banner.jpg');
  background-size: cover;
  background-position: center center;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease-out) forwards;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 9, 7, 0.72) 0%,
    rgba(10, 9, 7, 0.3) 50%,
    rgba(10, 9, 7, 0.1) 100%
  );
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 96px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  max-width: 900px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--beige);
}

.hero-subtitle {
  margin-top: 24px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--black);
  padding: 40px 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-item:last-child { border-right: none; }

.trust-item .number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--beige);
  line-height: 1;
}

.trust-item .label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(5, 1fr);
  }
  .trust-item { padding: 16px 8px; }
  .trust-item .number { font-size: clamp(1.2rem, 3.5vw, 2rem); }
  .trust-item .label { font-size: 0.55rem; letter-spacing: 0.1em; }
}

@media (max-width: 600px) {
  .hero-content { padding-bottom: 64px; }
  .hero-scroll-hint { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
}
