/* ============================================================
   HERO SPLIT
   ============================================================ */
.hero-split {
  position: relative;
  display: flex;
  height: 100vh;
  min-height: 620px;
  max-height: 1080px;
  overflow: hidden;
}

/* Panels */
.hero-panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: flex 0.7s var(--ease);
  cursor: default;
}
.hero-panel:hover { flex: 1.18; }

/* Background image layer */
.hero-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease);
}
.hero-panel:hover .hero-panel__bg { transform: scale(1.04); }

/* Overlay */
.hero-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(59, 31, 14, 0.82) 0%,
    rgba(59, 31, 14, 0.35) 50%,
    rgba(59, 31, 14, 0.08) 100%
  );
}
.hero-panel__overlay--light {
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.80) 0%,
    rgba(26, 26, 26, 0.30) 50%,
    rgba(26, 26, 26, 0.05) 100%
  );
}

/* Content */
.hero-panel__content {
  position: relative;
  z-index: 2;
  padding: 56px clamp(28px, 5vw, 72px);
  width: 100%;
  animation: heroFadeUp 1s 0.3s both;
}
.hero-panel__content--right { text-align: right; }

/* Eyebrow */
.hero-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-gold);
  margin-bottom: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}
.hero-panel__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--brand-gold);
}
.hero-panel__content--right .hero-panel__eyebrow::before { display: none; }
.hero-panel__content--right .hero-panel__eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--brand-gold);
}
.hero-panel__eyebrow--dark { color: var(--brand-gold); }

/* Title */
.hero-panel__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.hero-panel__title--dark { color: #fff; }

/* Subtitle */
.hero-panel__sub {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}
.hero-panel__sub--dark { color: rgba(255,255,255,0.75); }

/* Actions */
.hero-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-panel__content--right .hero-panel__actions { justify-content: flex-end; }

/* ============================================================
   CENTER MARK
   ============================================================ */
.hero-split__center {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  gap: 0;
}
.hero-split__logo-wrap {
  width: 88px; height: 88px;
  background: var(--brand-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 3px rgba(200,154,90,0.4);
  animation: heroCenterPop 0.8s 0.5s both;
}
.hero-split__logo-img { width: 64px; height: 64px; object-fit: contain; }
.hero-split__divider-line { display: none; }

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: heroFadeUp 1s 1s both;
}
.hero-scroll-indicator__mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero-scroll-indicator__wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}
.hero-scroll-indicator__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}

@keyframes scrollWheel { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(8px);opacity:0.4} }
@keyframes heroFadeUp  { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes heroCenterPop { from{opacity:0;transform:scale(0.5)} to{opacity:1;transform:scale(1)} }

/* Body offset for fixed header */
body { padding-top: 0; }
.hero-split { margin-top: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    height: auto;
    max-height: none;
  }
  .hero-panel {
    flex: none !important;
    height: 55vh;
    min-height: 340px;
  }
  .hero-panel:hover { flex: none !important; }
  .hero-split__center { display: none; }
  .hero-panel__title { font-size: clamp(1.8rem, 6vw, 3rem); }
  .hero-panel__actions { flex-wrap: wrap; }
  .hero-panel__content--right { text-align: left; }
  .hero-panel__content--right .hero-panel__eyebrow::before { display: block; }
  .hero-panel__content--right .hero-panel__eyebrow::after { display: none; }
  .hero-panel__content--right .hero-panel__actions { justify-content: flex-start; }
  .hero-scroll-indicator { display: none; }
}
@media (max-width: 520px) {
  .hero-panel__content { padding: 36px 24px; }
  .hero-panel__title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-panel__actions .btn { font-size: 0.78rem; padding: 11px 20px; }
}

/* ============================================================
   HERO PILLS (service tags)
   ============================================================ */
.hero-panel__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-panel__pills span {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(200,154,90,0.2);
  border: 1px solid rgba(200,154,90,0.35);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}
.hero-panel__pills--light span {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.hero-panel__pills--dark span {
  background: rgba(26,26,26,0.3);
  border-color: rgba(255,255,255,0.15);
}
.hero-panel__actions--right {
  justify-content: flex-end;
}
.hero-panel__eyebrow--silver { color: rgba(200,200,200,0.85); }

/* Decorative deco layer */
.hero-panel__deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Center logo small text */
.hero-split__center { gap: 4px; }

/* Button gold */
.btn--gold {
  background: var(--brand-gold);
  color: #fff;
  box-shadow: 0 8px 30px rgba(200,154,90,0.4);
}
.btn--gold:hover {
  background: var(--brand-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200,154,90,0.5);
}

@media (max-width: 600px) {
  .hero-panel__pills { gap: 6px; }
  .hero-panel__pills span { font-size: 0.68rem; padding: 4px 10px; }
  .hero-panel__actions--right { justify-content: flex-start; }
}
