/* ============================================
   THE FILMKRAFT — Shared Stylesheet
   Luxury Wedding Photography & Cinematography
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@200;300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #0a0a0a;
  --bg-rich: #111111;
  --bg-card: #1a1a1a;
  --bg-elevated: #222222;
  --gold: #c9a96e;
  --gold-light: #dfc28a;
  --gold-dark: #a8843f;
  --cream: #f5f0e8;
  --cream-soft: #ede6d8;
  --text-primary: #f5f0e8;
  --text-secondary: #b0a898;
  --text-muted: #7a7068;
  --accent: #c9a96e;
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 rgba(201,169,110,0.15);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.3rem;
}
.nav__logo span { color: var(--cream); font-weight: 300; }
.nav__links { display: flex; gap: 2.2rem; align-items: center; }
.nav__links a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  font-weight: 400;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--gold); }
.nav__links a.active::after { width: 100%; }
.nav__cta {
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.25em !important;
  transition: all 0.4s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--gold);
  color: var(--bg-deep) !important;
}

/* Mobile Menu */
.nav__menu-btn {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer; z-index: 1001;
}
.nav__menu-btn span {
  height: 1.5px; background: var(--gold);
  transition: all 0.3s; display: block;
}
.nav__menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__menu-btn.open span:nth-child(2) { opacity: 0; }
.nav__menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.98);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: all 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  transition: color 0.3s;
  letter-spacing: 0.1em;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s;
  border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,169,110,0.2);
}
.btn-secondary {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.4s;
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}
.btn-text {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 0.2rem;
  transition: all 0.3s;
  display: inline-block;
}
.btn-text:hover { border-color: var(--gold); }

/* ===== SHARED SECTION STYLES ===== */
section { padding: 7rem 2rem; }
.container { max-width: 1300px; margin: 0 auto; }
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: block; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 600px;
}

/* ===== PAGE HERO (Interior Pages) ===== */
.page-hero {
  min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.25) saturate(0.7);
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0.9));
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 2rem;
}
.page-hero__breadcrumb {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

/* ===== GRAIN OVERLAY ===== */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  background: var(--bg-deep);
}
.marquee__track {
  display: flex; white-space: nowrap;
  animation: scrollMarquee 35s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(201,169,110,0.75);
  letter-spacing: 0.04em;
  padding: 0 1.5rem;
  flex-shrink: 0;
}
.marquee__sep { color: rgba(201,169,110,0.45); margin: 0 0.8rem; }
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-rich);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(201,169,110,0.08);
}
.footer__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.footer__desc {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.9;
  max-width: 320px;
}
.footer__social {
  display: flex; gap: 1rem; margin-top: 1.5rem;
}
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.8rem;
  transition: all 0.3s;
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--bg-deep);
}
.footer h5 {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer li { margin-bottom: 0.6rem; }
.footer li a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color 0.3s;
}
.footer li a:hover { color: var(--gold); }
.footer__bottom {
  max-width: 1300px; margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== VIDEO PLAYER ===== */
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
}
.video-wrapper video,
.video-wrapper iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  border: none;
}
.video-wrapper__poster {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: opacity 0.5s;
}
.video-wrapper__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s;
  z-index: 2;
}
.video-wrapper__play::after {
  content: '';
  width: 0; height: 0;
  border-left: 18px solid var(--gold);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.video-wrapper:hover .video-wrapper__play {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-wrapper:hover .video-wrapper__play::after {
  border-left-color: var(--bg-deep);
}
.video-wrapper__label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 2;
}
.video-wrapper__label h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
}
.video-wrapper__label span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
  filter: brightness(0.8) saturate(0.85);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity 0.5s;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay h4 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400;
  color: var(--cream);
}
.gallery-item__overlay span {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-top: 0.2rem;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s;
  cursor: pointer;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute; top: 2rem; right: 2rem;
  font-family: var(--font-display);
  font-size: 2rem; color: var(--cream);
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox__close:hover { color: var(--gold); }

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.1);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--bg-card); }
.form-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,169,110,0.06);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,169,110,0.08);
  position: absolute;
  top: 0.3rem; left: 1.2rem;
  line-height: 1;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-card__location {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { padding: 1.2rem 2rem; }
  .nav.scrolled { padding: 1rem 2rem; }
  section { padding: 5rem 1.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  section { padding: 4rem 1.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .page-hero { min-height: 40vh; }
}

/* =============================================================================
   FILMKRAFT — Shared Header / Navigation (fk-nav)
   Replaces the old .nav + .mobile-menu classes.
   ============================================================================= */

/* ── Root header ─────────────────────────────────────────────────── */
.fk-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 4rem;
  transition: padding .4s ease, background .4s ease, box-shadow .4s ease;
  background: transparent;
}

.fk-nav.is-scrolled {
  padding: 1rem 4rem;
  background: rgba(8, 7, 5, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(201,169,110,.12), 0 4px 24px rgba(0,0,0,.3);
}

/* ── Logo ────────────────────────────────────────────────────────── */
.fk-nav__logo {
  display: inline-flex; align-items: baseline; gap: .3rem;
  text-decoration: none; flex-shrink: 0;
  transition: opacity .3s;
}
.fk-nav__logo:hover { opacity: .85; }

.fk-nav__logo-the {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 400;
  letter-spacing: .35em; color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}
.fk-nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 400;
  letter-spacing: .18em; color: var(--cream);
  text-transform: uppercase;
  line-height: 1;
}

/* ── Desktop links ───────────────────────────────────────────────── */
.fk-nav__links {
  display: flex; align-items: center; gap: 2.4rem;
}

.fk-nav__link {
  font-family: var(--font-body);
  font-size: .62rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(176,168,152,.75);
  text-decoration: none;
  position: relative;
  transition: color .3s;
  padding-bottom: 2px;
}
.fk-nav__link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .32s cubic-bezier(.22,1,.36,1);
}
.fk-nav__link:hover { color: var(--cream); }
.fk-nav__link:hover::after { width: 100%; }
.fk-nav__link.is-active { color: var(--gold); }
.fk-nav__link.is-active::after { width: 100%; }

/* ── Right side: CTA + burger ────────────────────────────────────── */
.fk-nav__right {
  display: flex; align-items: center; gap: 1.4rem; flex-shrink: 0;
}

.fk-nav__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.5rem;
  border: 1px solid rgba(201,169,110,.45);
  font-family: var(--font-body);
  font-size: .58rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.fk-nav__cta svg { opacity: .7; transition: opacity .3s; }
.fk-nav__cta:hover {
  background: var(--gold); color: #0a0806;
  border-color: var(--gold);
}
.fk-nav__cta:hover svg { opacity: 1; }

/* ── Hamburger ───────────────────────────────────────────────────── */
.fk-nav__burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 28px; height: 28px;
  background: none; border: none; cursor: pointer; padding: 0;
  z-index: 1001;
}
.fk-nav__burger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--gold);
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .25s;
  transform-origin: center;
}
.fk-nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.fk-nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.fk-nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu overlay ─────────────────────────────────────────── */
.fk-mobile {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 100vw);
  z-index: 1002;
  background: #0c0a07;
  border-left: 1px solid rgba(201,169,110,.08);
  display: flex; flex-direction: column;
  padding: 2.5rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
}
.fk-mobile.is-open { transform: translateX(0); }

.fk-mobile__backdrop {
  position: fixed; inset: 0; z-index: 1001;
  background: rgba(0,0,0,.6);
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
  backdrop-filter: blur(4px);
}
.fk-mobile__backdrop.is-open { opacity: 1; visibility: visible; }

/* Close button */
.fk-mobile__close {
  align-self: flex-end; margin-bottom: 2rem;
  background: none; border: 1px solid rgba(201,169,110,.15); cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,169,110,.6);
  border-radius: 50%;
  transition: border-color .3s, color .3s, background .3s;
}
.fk-mobile__close:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.06); }

/* Brand inside mobile menu */
.fk-mobile__brand {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400;
  letter-spacing: .18em; color: rgba(245,240,232,.5);
  text-transform: uppercase; margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,169,110,.07);
}
.fk-mobile__brand em { color: var(--gold); font-style: normal; }

/* Nav links */
.fk-mobile__links {
  display: flex; flex-direction: column; gap: 0; flex: 1;
}
.fk-mobile__link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,169,110,.05);
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 300;
  color: rgba(245,240,232,.6);
  text-decoration: none; letter-spacing: .04em;
  transition: color .3s, padding-left .3s;
}
.fk-mobile__link span {
  font-family: var(--font-body);
  font-size: .55rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(201,169,110,.35); font-weight: 400;
  min-width: 22px;
  transition: color .3s;
}
.fk-mobile__link:hover { color: var(--cream); padding-left: 6px; }
.fk-mobile__link:hover span { color: var(--gold); }
.fk-mobile__link.is-active { color: var(--gold); }
.fk-mobile__link.is-active span { color: var(--gold); }

/* Mobile footer — social + tagline */
.fk-mobile__footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,.07);
}
.fk-mobile__social {
  display: flex; gap: .75rem; margin-bottom: 1.4rem;
}
.fk-mobile__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,169,110,.5); text-decoration: none;
  transition: all .3s;
}
.fk-mobile__social a:hover { color: var(--gold); border-color: rgba(201,169,110,.4); background: rgba(201,169,110,.05); }
.fk-mobile__tagline {
  font-size: .7rem; font-weight: 300;
  color: rgba(122,112,104,.45); line-height: 1.7; letter-spacing: .03em;
}

/* ── Responsive breakpoints ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .fk-nav { padding: 1.4rem 2.5rem; }
  .fk-nav.is-scrolled { padding: .9rem 2.5rem; }
  .fk-nav__links { gap: 1.8rem; }
}

@media (max-width: 860px) {
  .fk-nav__links { display: none; }
  .fk-nav__cta { display: none; }
  .fk-nav__burger { display: flex; }
}

@media (max-width: 480px) {
  .fk-nav { padding: 1.2rem 1.5rem; }
  .fk-nav.is-scrolled { padding: .8rem 1.5rem; }
  .fk-nav__logo-name { font-size: 1.15rem; }
  .fk-mobile { padding: 2rem 1.75rem 2.5rem; }
}

/* =============================================================================
   FILMKRAFT — Professional Footer (fk-footer)
   ============================================================================= */

.fk-footer {
  background: #0b0906;
  border-top: 1px solid rgba(201,169,110,0.10);
  font-family: var(--font-body);
}

/* ── Top grid ────────────────────────────────────────────────────── */
.fk-footer__top {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.4fr;
  gap: 4rem;
  padding: 5.5rem 4rem 4rem;
}

/* ── Brand column ────────────────────────────────────────────────── */
.fk-footer__logo {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  margin-bottom: 1.4rem;
  text-decoration: none;
}
.fk-footer__logo-the {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}
.fk-footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
}

.fk-footer__desc {
  font-size: .8rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.95;
  max-width: 290px;
  margin-bottom: 2rem;
}

/* ── Social icons ────────────────────────────────────────────────── */
.fk-footer__social {
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-wrap: wrap;
}
.fk-footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,169,110,0.65);
  transition: color .3s, border-color .3s, background .3s, transform .25s;
  text-decoration: none;
}
.fk-footer__social-link svg {
  width: 16px;
  height: 16px;
}
.fk-footer__social-link:hover {
  color: #0a0806;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ── Nav columns ─────────────────────────────────────────────────── */
.fk-footer__links-col,
.fk-footer__contact-col {
  padding-top: .25rem;
}

.fk-footer__col-title {
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: .8rem;
}
.fk-footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: rgba(201,169,110,0.35);
}

.fk-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fk-footer__links li {
  margin-bottom: .65rem;
}
.fk-footer__links a {
  font-size: .8rem;
  font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .25s, padding-left .25s;
  display: inline-block;
}
.fk-footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* ── Contact items ───────────────────────────────────────────────── */
.fk-footer__contact-item {
  display: inline-flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .25s;
  line-height: 1.5;
}
.fk-footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(201,169,110,.45);
  width: 14px;
  height: 14px;
}
.fk-footer__contact-item:hover { color: var(--gold); }

.fk-footer__book-btn {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.4rem;
  border: 1px solid rgba(201,169,110,0.3);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: background .3s, border-color .3s, color .3s;
}
.fk-footer__book-btn:hover {
  background: var(--gold);
  color: #0a0806;
  border-color: var(--gold);
}

/* ── Divider ─────────────────────────────────────────────────────── */
.fk-footer__divider {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.fk-footer__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.12) 40%, rgba(201,169,110,0.12) 60%, transparent);
}
.fk-footer__divider-mark {
  font-size: .55rem;
  color: rgba(201,169,110,.35);
  letter-spacing: .1em;
}

/* ── Bottom bar ──────────────────────────────────────────────────── */
.fk-footer__bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.6rem 4rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.fk-footer__copy,
.fk-footer__region {
  font-size: .67rem;
  font-weight: 300;
  color: rgba(122,112,104,.55);
  letter-spacing: .04em;
}
.fk-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.fk-footer__bottom-links a {
  font-size: .67rem;
  font-weight: 300;
  color: rgba(122,112,104,.55);
  text-decoration: none;
  transition: color .25s;
  letter-spacing: .04em;
}
.fk-footer__bottom-links a:hover { color: var(--gold); }
.fk-footer__bottom-dot {
  color: rgba(122,112,104,.3);
  font-size: .67rem;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .fk-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 3rem 3rem;
  }
  .fk-footer__brand-col { grid-column: 1 / -1; }
  .fk-footer__divider,
  .fk-footer__bottom { padding-left: 3rem; padding-right: 3rem; }
}
@media (max-width: 640px) {
  .fk-footer__top {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2rem;
    gap: 2.5rem;
  }
  .fk-footer__brand-col { grid-column: auto; }
  .fk-footer__divider,
  .fk-footer__bottom { padding-left: 1.5rem; padding-right: 1.5rem; }
  .fk-footer__bottom { flex-direction: column; text-align: center; gap: .5rem; }
  .fk-footer__logo-name { font-size: 1.2rem; }
}
