/* ═══════════════════════════════════════════════════════════
   slider.css — Full-viewport hero slider
   ═══════════════════════════════════════════════════════════ */

/* ── Track fills its parent absolutely ─────────────────── */
.hs-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Individual slide ──────────────────────────────────── */
.hs-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--accent);
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hs-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Ken Burns zoom ────────────────────────────────────── */
@keyframes kbZoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.06); }
}
.hs-slide.active { animation: kbZoom 8s ease-in-out forwards; }
.hs-slide:not(.active) { animation: none; }

/* ── Cinematic overlay ─────────────────────────────────── */
.hs-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 22, 16, 0.88) 0%,
      rgba(10, 22, 16, 0.62) 42%,
      rgba(10, 22, 16, 0.20) 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 22, 16, 0.65) 0%,
      transparent 45%
    );
}

/* ── Content wrapper — matches navbar max-width ────────── */
/*
   We use a full-width flex row so the content is
   centred inside the same 1280 px column as the navbar.
   The left arrow lives OUTSIDE this column at a fixed offset.
*/
.hs-slide {
  /* override: content sits inside a centered column */
  align-items: stretch;      /* let inner wrapper be full height */
  justify-content: center;   /* center the column horizontally  */
}

.hs-content-col {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  padding: 0 56px;           /* contained — no need to match full viewport navbar */
  display: flex;
  align-items: center;
  margin-top: 38px;          /* ticker offset */
  box-sizing: border-box;
}

.hs-content {
  max-width: 620px;
  text-align: left;
}

@keyframes hsFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hs-slide.active .hs-content {
  animation: hsFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* ── Eyebrow ───────────────────────────────────────────── */
.hs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--mono);
  margin-bottom: 16px;
}
.hs-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.hs-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  font-family: var(--serif);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}

.hs-sub {
  font-size: clamp(0.88rem, 1.5vw, 1.02rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 460px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* ── CTA Button ────────────────────────────────────────── */
.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  font-family: var(--sans);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.hs-btn::after { content: '→'; transition: transform 0.2s; }
.hs-btn:hover {
  background: var(--gold-light, #d4a82a);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.55);
}
.hs-btn:hover::after { transform: translateX(4px); }

/* ── Arrow buttons — outside the content column ───────── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 4px;
  background: rgba(10,22,16,0.45);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hs-arrow:hover {
  background: rgba(201,168,76,0.85);
  border-color: var(--gold);
  color: var(--accent);
}
/* Push arrows to the outer edge — well clear of content text */
.hs-arrow--prev { left: 16px; }
.hs-arrow--next { right: 16px; }

/* ── Dot indicators ────────────────────────────────────── */
.hs-dots {
  position: absolute;
  bottom: 24px;
  left: 56px;
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hs-dot {
  width: 32px; height: 3px;
  border-radius: 1px;
  border: none;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.hs-dot.active {
  background: var(--gold);
  width: 56px;
}
.hs-dot:hover:not(.active) { background: rgba(255,255,255,0.55); }

/* ── Slide counter ─────────────────────────────────────── */
.hs-counter {
  position: absolute;
  bottom: 28px;
  right: 80px;
  z-index: 10;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
.hs-counter span { color: rgba(255,255,255,0.85); }

/* ── Progress bar ──────────────────────────────────────── */
.hs-progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  z-index: 15;
  background: rgba(255,255,255,0.1);
}
.hs-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: none;
}
.hs-progress-bar.animating {
  transition: width 5.5s linear;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hs-content-col { padding: 0 36px; }
  .hs-dots        { left: 36px; }
  .hs-counter     { right: 36px; }
}
@media (max-width: 768px) {
  .hs-content-col { padding: 0 20px; }
  .hs-arrow       { width: 36px; height: 36px; }
  .hs-arrow--prev { left: 8px; }
  .hs-arrow--next { right: 8px; }
  .hs-dots        { left: 20px; bottom: 16px; }
  .hs-counter     { display: none; }
}
@media (max-width: 480px) {
  .hs-title   { font-size: 1.65rem; }
  .hs-sub     { font-size: 0.88rem; }
  .hs-eyebrow { display: none; }
  .hs-btn     { padding: 11px 20px; font-size: 0.78rem; }
}