/* ── Fair.goodness — Hero Slider CSS ── */

.fg-hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.fg-hero-swiper,
.fg-hero-slide {
  height: var(--fg-hero-height, 95vh);
  min-height: 500px;
}
.fg-hero-slide {
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Background */
.fg-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.swiper-slide-active .fg-hero-bg { transform: scale(1); }

.fg-hero-bg--placeholder {
  background: linear-gradient(135deg, var(--fg-beige) 0%, var(--fg-cream) 50%, var(--fg-sand) 100%);
}
.fg-hero-overlay {
  position: absolute; inset: 0;
}

/* Decorative rings */
.fg-hero-rings {
  position: absolute; right: 8%; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  pointer-events: none;
}
.fg-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.fg-ring-1 { width: 340px; height: 340px; animation: fg-ring-spin 30s linear infinite; }
.fg-ring-2 { width: 240px; height: 240px; border-style: dashed; border-color: rgba(255,255,255,0.2); animation: fg-ring-spin 20s linear infinite reverse; }
.fg-ring-3 { width: 140px; height: 140px; animation: fg-ring-spin 15s linear infinite; border-color: rgba(201,169,110,0.2); }

@keyframes fg-ring-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Content */
.fg-hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 0 80px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s 0.3s ease, transform 0.8s 0.3s ease;
}
.swiper-slide-active .fg-hero-content {
  opacity: 1; transform: translateY(0);
}
.fg-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--fg-font-sans);
  font-size: 11px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--fg-gold);
  margin-bottom: 20px;
}
.fg-hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--fg-gold); display: block;
}
.fg-hero-heading {
  font-family: var(--fg-font-serif);
  font-size: clamp(40px, 5.5vw, 74px);
  font-weight: 300; line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.fg-hero-subtext {
  font-family: var(--fg-font-sans);
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 420px; margin-bottom: 40px;
}

/* Nav arrows */
.fg-hero-prev, .fg-hero-next {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.fg-hero-prev { left: 32px; }
.fg-hero-next { right: 32px; }
.fg-hero-prev:hover, .fg-hero-next:hover {
  background: var(--fg-gold);
  border-color: var(--fg-gold);
  color: var(--fg-text-dark);
}
/* Override Swiper defaults */
.fg-hero-swiper .swiper-button-prev::after,
.fg-hero-swiper .swiper-button-next::after { display: none; }

/* Dots pagination */
.fg-hero-pagination {
  position: absolute !important;
  bottom: 28px !important;
  left: 80px !important;
  width: auto !important;
  display: flex; gap: 8px;
}
.fg-hero-pagination .swiper-pagination-bullet {
  width: 24px; height: 2px; border-radius: 0;
  background: rgba(255,255,255,0.4);
  opacity: 1; transition: all 0.4s;
}
.fg-hero-pagination .swiper-pagination-bullet-active {
  width: 40px; background: var(--fg-gold);
}

/* Scroll hint */
.fg-scroll-hint {
  position: absolute; bottom: 28px; right: 40px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.fg-scroll-line {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.25);
  display: block; position: relative; overflow: hidden;
}
.fg-scroll-line::after {
  content: ''; position: absolute;
  top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--fg-gold);
  animation: fg-scroll-drop 2s ease-in-out infinite;
}
.fg-scroll-text {
  font-family: var(--fg-font-sans);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: horizontal-tb;
}

@keyframes fg-scroll-drop {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .fg-hero-content   { padding: 0 24px; }
  .fg-hero-rings     { display: none; }
  .fg-hero-prev      { left: 12px; width: 40px; height: 40px; }
  .fg-hero-next      { right: 12px; width: 40px; height: 40px; }
  .fg-hero-pagination { left: 24px !important; }
  .fg-scroll-hint    { right: 16px; }
}
