.fh-hero { position: relative; overflow: hidden; }
.fh-hero__slides { display: flex; transition: transform 600ms ease; }
.fh-hero__slide { flex: 0 0 100%; position: relative; height: 85vh; min-height: 500px; }
.fh-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fh-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45)); }
.fh-hero__content { position: absolute; bottom: 80px; left: 0; right: 0; text-align: center; color: white; padding: 0 24px; }
.fh-hero__title { font-family: var(--fh-font-heading); font-size: clamp(28px, 5vw, 56px); letter-spacing: 0.1em; margin-bottom: 16px; font-weight: 400; }
.fh-hero__subtitle { font-size: 16px; margin-bottom: 32px; opacity: 0.9; }
.fh-hero__btn { display: inline-block; padding: 14px 40px; background: white; color: var(--fh-color-text); font-family: var(--fh-font-heading); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; transition: background var(--fh-transition), color var(--fh-transition); }
.fh-hero__btn:hover { background: var(--fh-color-text); color: white; }
.fh-hero__nav { position: absolute; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255,255,255,0.2); color: white; font-size: 20px; z-index: 2; transition: background var(--fh-transition); border: none; }
.fh-hero__nav:hover { background: rgba(255,255,255,0.4); }
.fh-hero__nav--prev { left: 16px; }
.fh-hero__nav--next { right: 16px; }
.fh-hero__dots { position: absolute; bottom: 24px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.fh-hero__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); transition: background var(--fh-transition); border: none; }
.fh-hero__dot.is-active { background: white; }
@media (max-width: 700px) { .fh-hero__slide { height: 60vh; min-height: 360px; } .fh-hero__content { bottom: 40px; } }
