/* ===========================
   EMK MARKETING — STYLES
   Match till Squarespace-design
   =========================== */

@font-face {
  font-family: 'Bropella';
  src: url('fonts/Bropella.woff2') format('woff2'),
       url('fonts/Bropella.woff') format('woff'),
       url('fonts/Bropella.otf') format('opentype'),
       url('fonts/Bropella.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --bg-2: #0a0f14;
  --bg-3: #0d1419;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.65);
  --accent: #F5B800;
  --accent-soft: rgba(245, 184, 0, 0.5);
  --line: rgba(245, 184, 0, 0.4);

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1320px;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* ===========================
   ACCENT UNDERLINE
   =========================== */
.underline-accent {
  position: relative;
  display: inline-block;
}
.underline-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05em;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-main {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav__logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  max-width: 480px;
}
.nav__links a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 0.7; }

.nav__ig {
  color: var(--accent);
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav__ig:hover { opacity: 0.7; }

.nav__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav__burger span { display: block; width: 26px; height: 2px; background: var(--accent); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=2000&q=85');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 6rem;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.1;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: auto;
  padding-top: 6rem;
}
.hero-icon {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
}
.hero-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--text);
}

/* ===========================
   TAGLINE STRIP
   =========================== */
.tagline-strip {
  background: var(--bg);
  padding: 4rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.tagline-strip__line {
  flex: 1;
  height: 1px;
  background: var(--accent);
  max-width: 200px;
}
.tagline-strip p {
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  max-width: 600px;
}

/* ===========================
   CLIENTS MARQUEE
   =========================== */
.clients {
  background: var(--bg);
  padding: 2rem 0 5rem;
  border-bottom: 1px solid rgba(245, 184, 0, 0.15);
  border-top: 1px solid rgba(245, 184, 0, 0.15);
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 2rem 0;
}
.marquee__track {
  display: inline-flex;
  gap: 4rem;
  animation: marquee 50s linear infinite;
}
.marquee__track span {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  opacity: 0.85;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===========================
   SECTION TITLE
   =========================== */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 5rem var(--pad) 4rem;
  max-width: var(--max);
  margin: 0 auto;
}
.section-title__line {
  flex: 1;
  height: 1px;
  background: var(--accent);
  max-width: 220px;
}
.section-title h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  background: var(--bg);
  padding-bottom: 6rem;
}
.services__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}
.service-tile {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  transition: transform 0.4s;
}
.service-tile:hover { transform: translateY(-8px); }
.service-tile__img {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  filter: brightness(0.9);
  transition: filter 0.4s;
}
.service-tile:hover .service-tile__img { filter: brightness(1); }
.service-tile h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.service-tile h3.underline-accent::after {
  background: var(--accent);
  height: 3px;
  bottom: -4px;
}

/* ===========================
   TRUST + TESTIMONIALS
   =========================== */
.trust {
  background:
    linear-gradient(180deg, rgba(13, 20, 25, 0.9), rgba(0, 0, 0, 0.95)),
    url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?w=1800&q=80');
  background-size: cover;
  background-position: center;
  padding-bottom: 6rem;
}

.trust__row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust__avatars {
  display: flex;
}
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a3540, #0f1620);
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  margin-left: -16px;
}
.avatar:first-child { margin-left: 0; }

.trust__plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-outline--full { width: 100%; }

.testimonials {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(245, 184, 0, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.testimonial-card__img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a3540, #0f1620);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  border: 3px solid var(--accent);
}
.testimonial-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.testimonial-card__role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.testimonial-card__quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  opacity: 0.9;
  line-height: 1.5;
}

/* ===========================
   TEAM
   =========================== */
.team {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
    url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1800&q=80');
  background-size: cover;
  background-position: center;
  padding-bottom: 6rem;
}

.team__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.team__avatars {
  position: relative;
  height: 380px;
}
.team-avatar {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a3540, #0f1620);
  border: 3px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 2rem;
}
.team-avatar--1 { top: 30%; left: 5%; }
.team-avatar--2 { top: 5%; left: 35%; }
.team-avatar--3 { top: 35%; left: 55%; }
.team-avatar--4 { top: 65%; left: 25%; }

.team__text h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.team__text p {
  color: var(--text);
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 45ch;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  background: var(--bg);
  padding: 6rem 0;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery__item {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  transition: transform 0.4s;
}
.gallery__item:hover { transform: scale(1.03); }

/* ===========================
   PROCESS
   =========================== */
.process {
  background: var(--bg);
  padding-bottom: 6rem;
}
.process__cards {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.process-card {
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: transform 0.3s;
}
.process-card:hover { transform: translateY(-6px); }
.process-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.process-card__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
}
.process-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
}
.process-card p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.process-card em {
  font-style: italic;
  font-weight: 500;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--bg);
  padding-bottom: 6rem;
}
.contact__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.contact__lead {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.contact__sub {
  color: var(--muted);
  margin-bottom: 3rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__form input,
.contact__form textarea {
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 1.1rem 1.8rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.contact__form textarea {
  border-radius: 24px;
  resize: vertical;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--muted);
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  background: rgba(245, 184, 0, 0.05);
}
.form-status {
  font-size: 0.9rem;
  color: var(--accent);
  text-align: center;
  min-height: 1.2em;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(245, 184, 0, 0.15);
  padding: 5rem var(--pad) 2rem;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__cols h4 {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer__cols a, .footer__cols span {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
  padding: 0.3rem 0;
  transition: opacity 0.2s, color 0.2s;
}
.footer__cols a:hover { opacity: 1; color: var(--accent); }
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(245, 184, 0, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 980px) {
  .nav { padding: 1.5rem var(--pad); }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    max-width: none;
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; order: 3; }
  .nav__ig { display: none; }

  .team__inner { grid-template-columns: 1fr; gap: 3rem; }
  .team__avatars { height: 320px; max-width: 380px; margin: 0 auto; width: 100%; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__cols { grid-template-columns: 1fr 1fr; }

  .section-title__line, .tagline-strip__line { max-width: 60px; }
  .section-title { gap: 1rem; padding-left: var(--pad); padding-right: var(--pad); }
  .section-title h2 { white-space: normal; }
}

/* ===========================
   LOGO IMAGE
   =========================== */
.nav__logo-img {
  height: 88px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav__logo:hover .nav__logo-img { opacity: 0.85; }
@media (max-width: 640px) {
  .nav__logo-img { height: 60px; }
}
.footer__logo {
  height: 64px;
  width: auto;
}

/* ===========================
   NAV — ACTIVE + CTA + SOLID
   =========================== */
.nav__links a.is-active { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }
.nav__cta { margin-left: 1rem; }
.btn-outline--small { padding: 0.65rem 1.4rem; font-size: 0.82rem; }
.btn-outline--ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline--ghost:hover { background: #fff; color: #000; }

.nav--solid {
  position: relative;
  background: #000;
  border-bottom: 1px solid rgba(245, 184, 0, 0.2);
}

.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* 5-kolumn service grid */
.services__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .services__grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .services__grid--5 { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   SUBPAGE — PAGE HERO
   =========================== */
.subpage { padding-top: 0; }
.page-hero {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
    url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=2000&q=85');
  background-size: cover;
  background-position: center;
  padding: 8rem var(--pad) 6rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}
.page-hero p {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   SERVICE BLOCKS
   =========================== */
.service-block {
  padding: 6rem var(--pad);
  background: var(--bg);
}
.service-block--alt { background: var(--bg-2); }
.service-block__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-block__tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.service-block__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
}
.service-block__text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}
.service-block__text ul {
  list-style: none;
  margin-bottom: 2.5rem;
}
.service-block__text li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  border-bottom: 1px solid rgba(245, 184, 0, 0.15);
  font-size: 0.98rem;
}
.service-block__text li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.service-block__img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 400px;
}
@media (max-width: 820px) {
  .service-block__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block__img { aspect-ratio: 16/10; min-height: 280px; order: -1; }
  .service-block--alt .service-block__img { order: -1; }
}

/* ===========================
   ABOUT BLOCK
   =========================== */
.about-block {
  padding: 6rem var(--pad);
}
.about-block__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-block__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
}
.about-block__text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.about-block__img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 400px;
}
@media (max-width: 820px) {
  .about-block__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-block__img { aspect-ratio: 16/10; min-height: 280px; }
}

/* ===========================
   VALUES
   =========================== */
.values { padding-bottom: 6rem; background: var(--bg); }
.values__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.value-card {
  border: 1px solid rgba(245, 184, 0, 0.25);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.value-card h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.value-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ===========================
   TEAM GRID (om-oss)
   =========================== */
.team__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1rem;
}
.team-card__img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a3540, #0f1620);
  border: 3px solid var(--accent);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 2rem;
}
.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.team-card__role {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===========================
   CTA BAND
   =========================== */
.cta-band {
  text-align: center;
  padding: 6rem var(--pad);
  background: linear-gradient(180deg, var(--bg), #120e00);
  border-top: 1px solid rgba(245, 184, 0, 0.2);
  border-bottom: 1px solid rgba(245, 184, 0, 0.2);
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.cta-band p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ===========================
   PROCESS CTA
   =========================== */
.process__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===========================
   BOOKING
   =========================== */
.booking {
  padding: 4rem var(--pad) 5rem;
  background: var(--bg);
}
.booking__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.booking__inner h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 0.8rem;
}
.booking__sub {
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.booking__fallback {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===========================
   DIRECT CONTACT
   =========================== */
.direct-contact {
  padding: 5rem var(--pad);
  background: var(--bg-2);
  border-top: 1px solid rgba(245, 184, 0, 0.15);
}
.direct-contact__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  text-align: center;
}
.direct-contact h3 {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.direct-contact a, .direct-contact span {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}
.direct-contact a:hover { color: var(--accent); }

/* ===========================
   HERO SUB + SECTION LEAD + EYEBROW
   =========================== */
.hero__sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 600px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.section-lead {
  max-width: 640px;
  margin: -1.5rem auto 3.5rem;
  padding: 0 var(--pad);
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

/* Hero-icons — text only, inga ikoner */
.hero__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: auto;
  padding-top: 4rem;
}
.hero-icon {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
}

/* ===========================
   SERVICE TILE MED TEXT
   =========================== */
.service-tile p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-top: -0.5rem;
}

/* ===========================
   CASE CARDS (hem)
   =========================== */
.cases { padding: 0 0 6rem; background: var(--bg); }
.cases__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.case-card {
  border: 1px solid rgba(245, 184, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.25s, border-color 0.25s;
}
.case-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.case-card__img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.case-card__body { padding: 2rem; }
.case-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.case-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.case-card__metric {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.case-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.cases__cta { text-align: center; margin-top: 3rem; }

@media (max-width: 820px) {
  .cases__grid { grid-template-columns: 1fr; }
}

/* ===========================
   CASE BLOCK (case.html)
   =========================== */
.case-block { padding: 6rem var(--pad); background: var(--bg); }
.case-block--alt { background: var(--bg-2); }
.case-block__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.case-block__media {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  min-height: 360px;
}
.case-block__tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.case-block__text h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 2rem;
}
.case-block__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(245, 184, 0, 0.08);
  border: 1px solid rgba(245, 184, 0, 0.2);
  border-radius: 12px;
}
.case-block__metrics > div {
  text-align: center;
  border-right: 1px solid rgba(245,184,0,0.2);
  padding: 0 0.5rem;
}
.case-block__metrics > div:last-child { border-right: none; }
.case-block__metrics strong {
  display: block;
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.case-block__metrics span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.case-block__text p {
  color: var(--text);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.case-block__text p strong { color: var(--accent); }
@media (max-width: 820px) {
  .case-block__inner { grid-template-columns: 1fr; gap: 2rem; }
  .case-block__media { min-height: 240px; order: -1; }
  .case-block--alt .case-block__media { order: -1; }
  .case-block__metrics { grid-template-columns: 1fr; }
  .case-block__metrics > div { border-right: none; border-bottom: 1px solid rgba(245,184,0,0.2); padding-bottom: 0.8rem; }
  .case-block__metrics > div:last-child { border-bottom: none; }
}

/* ===========================
   OTHER CLIENTS
   =========================== */
.other-clients { padding: 4rem var(--pad) 6rem; background: var(--bg); }
.other-clients__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.other-clients__grid span {
  padding: 0.8rem 1.4rem;
  border: 1px solid rgba(245, 184, 0, 0.3);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.other-clients__grid span:hover { background: var(--accent); color: var(--bg); }

/* ===========================
   PRICE NOTE
   =========================== */
.price-note {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem !important;
}

/* ===========================
   SERVICE BLOCK H4
   =========================== */
.service-block__text h4 {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

/* ===========================
   TEAM CARD MED BILD
   =========================== */
.team-card__img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background-size: cover;
  background-position: center top;
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 2rem;
}
.team-card__img--initials {
  background: linear-gradient(135deg, #2a3540, #0f1620);
}
.team-card__bio {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.8rem;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   ABOUT TEASER (hem)
   =========================== */
.about-teaser {
  padding: 6rem var(--pad);
  background: var(--bg-2);
}
.about-teaser__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-teaser__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}
.about-teaser__text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.about-teaser__img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  min-height: 400px;
}
@media (max-width: 820px) {
  .about-teaser__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-teaser__img { min-height: 300px; }
}

@media (max-width: 980px) {
  .nav__cta { display: none; }
}

@media (max-width: 640px) {
  .hero__icons { gap: 1.2rem; padding-top: 4rem; }
  .hero-icon { font-size: 0.9rem; }
  .hero-icon svg { width: 28px; height: 28px; }

  .trust__row { gap: 1.5rem; }
  .avatar { width: 56px; height: 56px; font-size: 1.1rem; margin-left: -12px; }

  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .team-avatar { width: 90px; height: 90px; font-size: 1.4rem; }
}

/* ===========================
   SHOWREEL
   =========================== */
.showreel-body { background: #000; }

/* Hero */
.showreel-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.showreel-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.32) saturate(1.15) contrast(1.05);
  animation: heroSlowZoom 24s ease-in-out infinite alternate;
}
@keyframes heroSlowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.16); }
}
.showreel-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 65%, rgba(0,0,0,0.95) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.95) 100%);
  pointer-events: none;
}
.showreel-hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    420px circle at var(--mouse-x) var(--mouse-y),
    rgba(245, 184, 0, 0.18) 0%,
    rgba(245, 184, 0, 0.08) 30%,
    transparent 70%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 0.4s;
}
.showreel-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px;
  mix-blend-mode: overlay;
}

.showreel-hero .nav { z-index: 5; }

.showreel-hero__content {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem var(--pad) 4rem;
  max-width: var(--max);
  margin: 0 auto;
}
.showreel-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.7s 0.05s ease forwards;
}
.showreel-hero__title {
  font-family: 'Bropella', 'Montserrat', sans-serif;
  font-size: clamp(3.2rem, 13vw, 11rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.85));
}
.showreel-hero__title .reveal-word {
  display: inline-block;
  opacity: 0.001;
  transform: translateY(28px);
  animation: revealWord 0.8s cubic-bezier(.2,.7,.2,1) forwards;
  text-shadow:
    0 4px 24px rgba(0,0,0,0.95),
    0 2px 10px rgba(0,0,0,0.9),
    0 0 60px rgba(0,0,0,0.6);
}
.showreel-hero__title .reveal-word:nth-child(1) { animation-delay: 0.1s; }
.showreel-hero__title .reveal-word:nth-child(2) {
  animation-delay: 0.22s;
  color: var(--accent);
  text-shadow:
    0 4px 24px rgba(0,0,0,0.95),
    0 0 30px rgba(245,184,0,0.4);
}

.showreel-hero__sub {
  margin-top: 1.6rem;
  max-width: 460px;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}
.showreel-hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s ease forwards;
}

.showreel-hero__scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  opacity: 0;
  animation: fadeUp 0.7s 0.7s ease forwards, bob 2.5s 1.3s ease-in-out infinite;
}
.showreel-hero__scroll:hover { color: var(--accent); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealWord {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* Spotlight reel */
.showreel-spotlight {
  background: var(--bg);
  padding: 0 var(--pad) 3rem;
}
.showreel-spotlight__frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(245, 184, 0, 0.25),
    0 30px 80px -20px rgba(245, 184, 0, 0.15),
    0 50px 120px -40px rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.showreel-spotlight__frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245,184,0,0.5), transparent 40%, transparent 60%, rgba(245,184,0,0.3));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}
.showreel-spotlight__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showreel-spotlight__playbtn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(245, 184, 0, 0.95);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s, opacity 0.3s;
  box-shadow: 0 8px 40px rgba(245,184,0,0.4);
}
.showreel-spotlight__playbtn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}
.showreel-spotlight__playbtn.is-hidden { opacity: 0; pointer-events: none; }
.showreel-spotlight__mute {
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(245,184,0,0.4);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
}
.showreel-spotlight__frame:hover .showreel-spotlight__mute,
.showreel-spotlight__mute.is-visible {
  opacity: 1;
}
.showreel-spotlight__mute:hover { background: rgba(245,184,0,0.2); }

.showreel-spotlight__meta {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Filter chips */
.showreel-filters {
  background: var(--bg);
  padding: 4rem var(--pad) 2.5rem;
}
.showreel-filters__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.filter-chip {
  background: transparent;
  border: 1px solid rgba(245, 184, 0, 0.35);
  color: var(--text);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.filter-chip:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.filter-chip.is-active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* Bento grid */
.showreel-grid-wrap {
  background: var(--bg);
  padding: 2rem var(--pad) 4rem;
}
.showreel-grid-wrap--alt {
  background: var(--bg);
  padding-top: 4rem;
}
.showreel-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.showreel-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0a0a0a;
  cursor: zoom-in;
  grid-column: span 4;
  grid-row: span 1;
  transform: translateY(28px);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.showreel-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.showreel-item.is-hidden {
  display: none;
}
.showreel-item.span-3 { grid-column: span 3; }
.showreel-item.span-4 { grid-column: span 4; }
.showreel-item.span-5 { grid-column: span 5; }
.showreel-item.span-6 { grid-column: span 6; }
.showreel-item.span-8 { grid-column: span 8; }
.showreel-item.row-1 { grid-row: span 1; }
.showreel-item.row-2 { grid-row: span 2; }

.showreel-item img,
.showreel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.92) saturate(1.05);
}
.showreel-item:hover img,
.showreel-item:hover video {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.1);
}

.showreel-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.showreel-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.showreel-item__client {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.showreel-item__type {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Storytelling break */
.showreel-storytelling {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  margin: 2rem 0;
}
.showreel-storytelling__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.showreel-storytelling__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.92) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%);
}
.showreel-storytelling__bg {
  filter: brightness(0.55) saturate(1.1);
}
.showreel-storytelling__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 4rem var(--pad);
}
.showreel-storytelling__content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0.6rem 0 1.6rem;
  letter-spacing: -0.02em;
  text-shadow:
    0 4px 30px rgba(0,0,0,0.85),
    0 2px 10px rgba(0,0,0,0.9);
}
.showreel-storytelling__content p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}
.showreel-storytelling__content .eyebrow {
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__stage {
  max-width: min(94vw, 1500px);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__stage img,
.lightbox__stage video {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0,0,0,0.7);
}
.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(245,184,0,0.4);
  color: var(--accent);
  cursor: pointer;
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 400;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
}
.lightbox__close { top: 1.5rem; right: 1.5rem; font-size: 2rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(245,184,0,0.25); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.08); }

body.lightbox-open { overflow: hidden; }

/* Showreel responsive */
@media (max-width: 980px) {
  .showreel-hero__spotlight { display: none; }
  .showreel-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }
  .showreel-item.span-3,
  .showreel-item.span-4 { grid-column: span 3; }
  .showreel-item.span-5,
  .showreel-item.span-6 { grid-column: span 6; }
  .showreel-item.span-8 { grid-column: span 6; }
  .showreel-spotlight__playbtn { width: 72px; height: 72px; }
}
@media (max-width: 640px) {
  .showreel-hero__title { font-size: clamp(2.6rem, 16vw, 5rem); }
  .showreel-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }
  .showreel-item,
  .showreel-item.span-3,
  .showreel-item.span-4,
  .showreel-item.span-5,
  .showreel-item.span-6,
  .showreel-item.span-8 { grid-column: span 2; }
  .showreel-item.row-2 { grid-row: span 1; }
  .showreel-item figcaption { opacity: 1; transform: translateY(0); }
  .lightbox__close,
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 0.6rem; }
  .lightbox__nav--next { right: 0.6rem; }
  .showreel-filters { padding: 2.5rem var(--pad) 1.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .showreel-hero__title .reveal-word,
  .showreel-hero__eyebrow,
  .showreel-hero__sub,
  .showreel-hero__scroll {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .showreel-hero__bg,
  .showreel-storytelling__bg,
  .showreel-item video {
    display: none;
  }
  .showreel-item {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .showreel-hero__spotlight { display: none; }
}

/* ===========================
   MINIMAL NAV + FOOTER (showreel-only)
   =========================== */
.nav--minimal {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 640px) {
  .nav--minimal { padding: 1.2rem var(--pad); }
}
.nav--minimal .nav__cta { margin-left: 0; }

.footer--minimal { padding-top: 4rem; }
.footer--minimal .footer__cols {
  grid-template-columns: 1fr 1fr;
  max-width: 640px;
}
@media (max-width: 640px) {
  .footer--minimal .footer__cols { grid-template-columns: 1fr; }
}

/* ===========================
   WOW UPGRADES — Cinematic polish
   =========================== */

/* Hero — cinematic layers */
.hero--cinematic {
  isolation: isolate;
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.hero--cinematic .hero__bg {
  animation: kenBurns 22s ease-in-out infinite alternate;
  filter: brightness(0.65) saturate(1.05);
}
@keyframes kenBurns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.18) translate(-2%, -1%); }
}

.hero--cinematic .hero__overlay {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.85) 100%);
}

.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    520px circle at var(--mouse-x) var(--mouse-y),
    rgba(245, 184, 0, 0.18) 0%,
    rgba(245, 184, 0, 0.06) 35%,
    transparent 70%
  );
  mix-blend-mode: screen;
  transition: opacity 0.4s;
  opacity: 0;
}
.hero--cinematic:hover .hero__spotlight { opacity: 1; }

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px;
  animation: grainShift 6s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-3%, 1%); }
  40%  { transform: translate(2%, -2%); }
  60%  { transform: translate(-1%, 2%); }
  80%  { transform: translate(3%, 1%); }
  100% { transform: translate(0,0); }
}

/* Hero eyebrow */
.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s 0.1s ease forwards;
}

/* Hero title — line-by-line reveal */
.hero__title--reveal .reveal-line {
  display: block;
  overflow: hidden;
  line-height: 1.05;
  padding-bottom: 0.05em;
}
.hero__title--reveal .reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: revealLine 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__title--reveal .reveal-line:nth-child(1) > span { animation-delay: 0.3s; }
.hero__title--reveal .reveal-line:nth-child(2) > span { animation-delay: 0.5s; }

@keyframes revealLine {
  to { transform: translateY(0); }
}

.hero__sub {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s 0.85s ease forwards;
}
.hero__cta {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s 1s ease forwards;
}
.hero__icons .hero-icon {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s ease forwards;
}
.hero__icons .hero-icon:nth-child(1) { animation-delay: 1.15s; }
.hero__icons .hero-icon:nth-child(2) { animation-delay: 1.22s; }
.hero__icons .hero-icon:nth-child(3) { animation-delay: 1.29s; }
.hero__icons .hero-icon:nth-child(4) { animation-delay: 1.36s; }
.hero__icons .hero-icon:nth-child(5) { animation-delay: 1.43s; }

/* Hero scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  animation: fadeUp 0.9s 1.6s ease forwards, bobScroll 2.6s 1.8s ease-in-out infinite;
  text-decoration: none;
}
.hero__scroll:hover { color: var(--accent); }
@keyframes bobScroll {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* Hero icons — premium polish */
.hero-icon {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s, color 0.3s;
}
.hero-icon:hover {
  border-color: var(--accent);
  background: rgba(245, 184, 0, 0.12);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ===========================
   Service tiles — wow upgrade
   =========================== */
.services__grid--5 { counter-reset: service-num; }
.service-tile {
  counter-increment: service-num;
  position: relative;
  padding-top: 0.5rem;
}
.service-tile::before {
  content: "0" counter(service-num);
  position: absolute;
  top: 0.6rem;
  left: 0.8rem;
  z-index: 3;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(245,184,0,0.4);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s, transform 0.4s;
}
.service-tile:hover::before { opacity: 1; transform: translateY(0); }

.service-tile__img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: filter 0.5s, transform 0.5s;
}
.service-tile__img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(245,184,0,0), 0 25px 60px -20px rgba(245,184,0,0);
  transition: box-shadow 0.5s;
  pointer-events: none;
}
.service-tile:hover .service-tile__img {
  filter: brightness(1.05) saturate(1.1);
  transform: translateY(-4px);
}
.service-tile:hover .service-tile__img::after {
  box-shadow: 0 0 0 1px rgba(245,184,0,0.5), 0 30px 70px -10px rgba(245,184,0,0.35);
}

.service-tile h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
}
.service-tile h3::after {
  content: "→";
  display: inline-block;
  font-weight: 700;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 1.2rem;
}
.service-tile:hover h3::after { opacity: 1; transform: translateX(0); }

/* ===========================
   Case cards — editorial polish
   =========================== */
.case-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.4s, box-shadow 0.4s;
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 30px 80px -30px rgba(245,184,0,0.35);
}
.case-card__img {
  position: relative;
  overflow: hidden;
}
.case-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1), filter 0.5s;
  z-index: 0;
}
.case-card__img {
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.case-card:hover .case-card__img {
  transform: scale(1.04);
}
.case-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.case-card__tag {
  position: relative;
  padding: 0.3rem 0.7rem;
  background: rgba(245,184,0,0.12);
  border: 1px solid rgba(245,184,0,0.35);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.case-card__metric {
  font-size: 1.05rem;
  background: linear-gradient(90deg, var(--accent), #ffd966);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===========================
   Marquee — fade edges + pause on hover
   =========================== */
.clients {
  position: relative;
}
.clients .marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.clients .marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__track span {
  transition: color 0.3s, opacity 0.3s;
  cursor: default;
}
.marquee__track span:hover {
  color: var(--accent);
  opacity: 1;
}

/* ===========================
   Process cards — gold glow
   =========================== */
.process-card {
  position: relative;
  background: linear-gradient(180deg, rgba(245,184,0,0.04), rgba(0,0,0,0.6));
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s, background 0.4s;
  overflow: hidden;
}
.process-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 0%, rgba(245,184,0,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
  pointer-events: none;
}
.process-card:hover::before { opacity: 1; }
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -30px rgba(245,184,0,0.3);
}
.process-card > * { position: relative; z-index: 1; }

.process-card__num {
  background: linear-gradient(180deg, var(--accent), #c98f00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3rem;
  text-shadow: 0 4px 30px rgba(245,184,0,0.3);
}

/* ===========================
   Section title — accent dot
   =========================== */
.section-title h2 {
  position: relative;
}
.section-title h2::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.6em;
  display: inline-block;
  transform: translateY(-0.1em);
}

/* ===========================
   About teaser — image effect
   =========================== */
.about-teaser__img {
  position: relative;
  overflow: hidden;
  transition: transform 0.6s;
}
.about-teaser__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,184,0,0.0) 30%, rgba(245,184,0,0.25));
  mix-blend-mode: overlay;
  opacity: 0.7;
}
.about-teaser__inner:hover .about-teaser__img {
  transform: scale(1.02);
}

/* ===========================
   Testimonials — softer card
   =========================== */
.testimonial-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.6));
  transition: transform 0.4s, border-color 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 18px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

/* ===========================
   Buttons — sheen on hover
   =========================== */
.btn-outline {
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,184,0,0.3), transparent);
  transition: left 0.6s;
}
.btn-outline:hover::before { left: 100%; }
.btn-outline--ghost::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

/* ===========================
   CTA band — radial glow + spotlight
   =========================== */
.cta-band {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245,184,0,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), #120e00);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245,184,0,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}
.cta-band:hover::before { opacity: 1; }

/* ===========================
   Reduced motion — respect it
   =========================== */
@media (prefers-reduced-motion: reduce) {
  .hero--cinematic .hero__bg { animation: none; }
  .hero__grain { animation: none; }
  .hero__title--reveal .reveal-line > span,
  .hero__eyebrow,
  .hero__sub,
  .hero__cta,
  .hero-icon,
  .hero__scroll {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero__spotlight { display: none; }
}

/* ===========================
   FOTO CAROUSEL + 2-COL GRID (mobile)
   =========================== */
.foto-carousel { display: none; }

/* Inga caption-labels på FOTO-griden — bara rena bilder */
#foto .showreel-item figcaption { display: none !important; }

@media (max-width: 768px) {
  /* ---- Carousel ---- */
  .foto-carousel {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin: 0 calc(-1 * var(--pad)) 1.5rem;
    padding: 0 var(--pad) 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .foto-carousel::-webkit-scrollbar { display: none; }

  .foto-carousel__track {
    display: flex;
    gap: 12px;
    width: max-content;
  }

  .foto-carousel__item {
    flex: 0 0 calc(100vw - 2 * var(--pad));
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    overflow: hidden;
    background: #0a0a0a;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7);
    position: relative;
    margin: 0;
  }
  .foto-carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .foto-carousel__item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(245,184,0,0.15);
    pointer-events: none;
  }

  /* ---- FOTO grid: 2 kolumner med 4:5 (override över befintlig mobile-regel) ---- */
  #foto .showreel-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    grid-auto-rows: auto !important;
    grid-auto-flow: row !important;
    gap: 8px !important;
    align-items: stretch !important;
  }

  /* Nuke alla span-klasser som arvs från desktop bento */
  #foto .showreel-grid > .showreel-item,
  #foto .showreel-grid > .showreel-item.span-3,
  #foto .showreel-grid > .showreel-item.span-4,
  #foto .showreel-grid > .showreel-item.span-5,
  #foto .showreel-grid > .showreel-item.span-6,
  #foto .showreel-grid > .showreel-item.span-8,
  #foto .showreel-grid > .showreel-item.row-2 {
    grid-column: auto / span 1 !important;
    grid-row: auto / span 1 !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    position: relative !important;
  }

  #foto .showreel-grid > .showreel-item > img,
  #foto .showreel-grid > .showreel-item > video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 14px !important;
  }

  /* Captions alltid synliga på mobil — namn + typ */
  #foto .showreel-grid > .showreel-item > figcaption {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 0.9rem 1rem !important;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%) !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: none !important;
    border-radius: 14px !important;
  }
  #foto .showreel-grid > .showreel-item .showreel-item__client {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.01em !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  }
  #foto .showreel-grid > .showreel-item .showreel-item__type {
    color: var(--accent) !important;
    font-weight: 700 !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    margin-top: 0.25rem !important;
  }

  /* Sektion-titel-spacing på mobil */
  #foto .section-title { padding: 3rem var(--pad) 2rem; }
}
