:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0a0b0d;
  --panel: #0e1013;
  --panel-strong: #15181d;
  --ink: #f5f7fb;
  --ink-soft: #d8dde5;
  --muted: #9aa3af;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  --accent: #0ea5e9;
  --accent-soft: rgba(14, 165, 233, 0.18);
  --accent-strong: #38bdf8;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.105);
  --glow-blue: 0 0 44px rgba(14, 165, 233, 0.24);
  --glow-white: 0 0 34px rgba(255, 255, 255, 0.105);
  --danger: #e85f4a;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 16px 45px rgba(0, 0, 0, 0.28);
  --shadow-deep: 0 38px 110px rgba(0, 0, 0, 0.64);
  --surface-sheen: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --header-height: 76px;
  --max-width: 1180px;
  --mini-player-offset: 18px;
  --mini-player-width: min(420px, calc(100vw - 36px));
  --mini-player-bar-height: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% -8%, rgba(56, 189, 248, 0.16), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 52% 54%, rgba(14, 165, 233, 0.075), transparent 38%),
    linear-gradient(135deg, #050505 0%, #0a0c10 45%, #050505 100%),
    var(--bg);
  background-size: 130% 130%, 120% 120%, 150% 150%, 100% 100%;
  animation: ambientGradient 22s ease-in-out infinite alternate;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.024;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='1600' viewBox='0 0 1600 1600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.36'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: soft-light;
}

body.menu-open {
  overflow: hidden;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: #ffffff;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  color: #ffffff;
  background: var(--accent);
  border-radius: 999px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  width: min(var(--max-width), calc(100% - 28px));
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 14px;
  transform: translateX(-50%);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.48),
    0 0 36px rgba(255, 255, 255, 0.06),
    var(--surface-sheen);
  backdrop-filter: blur(24px);
  transition:
    top 220ms ease,
    width 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  top: 8px;
  width: min(1080px, calc(100% - 22px));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.9);
  border-color: var(--line-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 158px;
  height: auto;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.language-switch button {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-switch button:hover,
.language-switch button:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.115);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  min-width: 86px;
  padding-bottom: 1px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow:
    0 14px 34px rgba(14, 165, 233, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-weight: 760;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    var(--surface-sheen);
}

.language-switch button {
  min-width: 32px;
  min-height: 26px;
  padding: 0 7px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 820;
}

.language-switch button[aria-pressed="true"] {
  color: #ffffff;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.24);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  padding: 130px max(22px, calc((100vw - var(--max-width)) / 2)) 54px;
  overflow: hidden;
  background: #000000;
  isolation: isolate;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.52) 44%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.18) 44%, rgba(5, 5, 5, 0.38) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 68%, rgba(14, 165, 233, 0.32), transparent 30%),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.12), transparent 28%);
  mask-image: linear-gradient(90deg, #000000 0%, transparent 74%);
  opacity: 0.24;
  animation: heroAura 14s ease-in-out infinite alternate;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 780;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 4.7rem;
  line-height: 0.96;
  font-weight: 880;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  width: min(640px, 100%);
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button.primary {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow:
    0 18px 46px rgba(14, 165, 233, 0.34),
    0 0 32px rgba(14, 165, 233, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button.secondary {
  color: #ffffff;
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.065);
  box-shadow:
    var(--glow-white),
    var(--surface-sheen);
  backdrop-filter: blur(18px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary:hover,
.button.primary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(180deg, #67d7ff, var(--accent-strong));
}

.section {
  width: min(var(--max-width), calc(100% - 44px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.intro-lead {
  width: min(920px, 100%);
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.25rem, 2vw, 1.68rem);
  line-height: 1.28;
  text-wrap: pretty;
}

.service-card,
.team-card,
.sustainability-card,
.contact-person,
.brief-form,
.reference-sidebar,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    var(--shadow-soft),
    var(--glow-white),
    var(--surface-sheen);
  backdrop-filter: blur(18px);
}

.showreel-frame {
  width: 100vw;
  position: relative;
  max-height: 90svh;
  aspect-ratio: 16 / 9;
  margin: 78px 0 0 calc(50% - 50vw);
  overflow: hidden;
  background: #000000;
  border-block: 1px solid var(--line-strong);
  box-shadow: var(--shadow-deep);
}

.showreel-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
}

.showreel-replay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.92) 62%),
    #000000;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.showreel-replay span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: #ffffff;
  background: var(--accent);
  border-radius: 999px;
  box-shadow:
    0 24px 72px rgba(14, 165, 233, 0.32),
    var(--surface-sheen);
}

.showreel-frame.has-ended .showreel-replay {
  opacity: 1;
  pointer-events: auto;
}

.reference-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: stretch;
}

.reference-main {
  min-width: 0;
}

.reference-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow:
    var(--shadow-deep),
    var(--surface-sheen);
}

.reference-stage.has-mini-player {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(14, 165, 233, 0.16), transparent 42%),
    rgba(0, 0, 0, 0.72);
  border-style: dashed;
}

.reference-stage.has-mini-player::after {
  content: "Playing in mini player";
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 760;
}

.reference-stage iframe,
.reference-stage video,
.reference-stage img {
  width: 100%;
  height: 100%;
}

.reference-stage iframe {
  border: 0;
  background: #000000;
  color-scheme: dark;
}

.reference-stage video,
.reference-stage img {
  object-fit: contain;
  background: #000000;
}

.reference-copy {
  padding: 22px 4px 0;
}

.reference-copy p:not(.eyebrow) {
  color: var(--muted);
}

.credit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.credit-list li {
  padding: 7px 10px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
}

.reference-sidebar {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    var(--shadow-soft),
    var(--surface-sheen);
}

.reference-controls {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.reference-controls > span {
  color: #ffffff;
  font-weight: 820;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-bar button {
  min-height: 32px;
  padding: 0 10px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
}

.filter-bar button.is-active {
  color: #ffffff;
  border-color: rgba(14, 165, 233, 0.8);
  background: var(--accent-soft);
}

.reference-list {
  max-height: 640px;
  overflow: auto;
  padding: 8px;
}

.reference-item {
  width: 100%;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  color: inherit;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.reference-item:hover,
.reference-item:focus-visible,
.reference-item.is-active {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.reference-item.is-active {
  transform: translateX(2px);
}

.thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 6px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 250ms ease;
}

.reference-item:hover .thumb img {
  transform: scale(1.06);
}

.thumb::after {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 26px;
  height: 20px;
  display: grid;
  place-items: center;
  content: "▶";
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 5px;
  font-size: 0.7rem;
}

.reference-item[data-media-type="image"] .thumb::after {
  width: 42px;
  content: "CASE";
}

.reference-item-title {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.2;
}

.reference-item-meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.services-section {
  position: relative;
  width: 100%;
  padding-inline: max(22px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.78) 48%, rgba(5, 5, 5, 0.9)),
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.38) 28%, rgba(5, 5, 5, 0.92) 100%),
    url("assets/services-rioghan-bg.webp") center 38% / cover;
  border-block: 1px solid var(--line);
}

.services-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgba(14, 165, 233, 0.16), transparent 42%),
    rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.services-section > * {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.team-card,
.sustainability-card {
  padding: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
}

.service-card:hover,
.team-card:hover,
.sustainability-card:hover,
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    var(--shadow-deep),
    var(--surface-sheen);
  transform: translateY(-5px);
}

.team-card:hover,
.sustainability-card:hover {
  border-color: transparent;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 480ms ease;
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-card p,
.team-card p,
.sustainability-card p {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-row span {
  padding: 6px 9px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  position: relative;
  min-height: 640px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.24) 36%, rgba(0, 0, 0, 0.88) 100%),
    var(--team-photo, #0b0c0e) center / cover;
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(14, 165, 233, 0.08);
}

.team-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(14, 165, 233, 0.18), transparent 44%);
  pointer-events: none;
}

.team-card strong,
.team-card .team-role,
.team-card p {
  position: relative;
  z-index: 1;
}

.team-card p {
  color: rgba(245, 247, 251, 0.84);
}

.team-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.55rem;
}

.team-role {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 760;
}

.team-card p {
  font-size: 1.02rem;
  line-height: 1.55;
}

.sustainability-section {
  width: 100%;
  padding-inline: max(22px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(180deg, rgba(14, 165, 233, 0.1), transparent 36%),
    #070707;
  border-block: 1px solid var(--line);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sustainability-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.82)),
    url("assets/carbon-footprint-forest.jpg") center / cover;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(14, 165, 233, 0.07);
}

.sustainability-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(14, 165, 233, 0.16), transparent 54%);
  pointer-events: none;
}

.sustainability-card h3,
.sustainability-card p {
  position: relative;
  z-index: 1;
}

.sustainability-card p {
  color: rgba(245, 247, 251, 0.82);
}

.faq-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
  padding-top: 132px;
}

.faq-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 132px;
  content: "";
  background:
    radial-gradient(ellipse at center top, rgba(14, 165, 233, 0.13), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.faq-section > * {
  position: relative;
  z-index: 1;
}

.faq-section .section-heading {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    var(--shadow),
    0 0 30px rgba(255, 255, 255, 0.055),
    var(--surface-sheen);
}

.faq-item summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: #ffffff;
  font-weight: 780;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  width: 26px;
  height: 26px;
  display: block;
  flex: 0 0 auto;
  content: "";
  background:
    linear-gradient(#ffffff, #ffffff) center / 10px 2px no-repeat,
    linear-gradient(#ffffff, #ffffff) center / 2px 10px no-repeat,
    var(--accent);
  border-radius: 999px;
}

.faq-item[open] summary::after {
  background:
    linear-gradient(#ffffff, #ffffff) center / 10px 2px no-repeat,
    var(--accent);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 36px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.contact-person {
  display: grid;
  gap: 7px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    var(--shadow-soft),
    0 0 28px rgba(255, 255, 255, 0.06),
    var(--surface-sheen);
}

.contact-person strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.contact-person a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contact-person a:hover,
.contact-person a:focus-visible {
  color: #ffffff;
}

.brief-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.048);
  box-shadow:
    var(--shadow),
    0 0 38px rgba(14, 165, 233, 0.1),
    var(--surface-sheen);
}

.brief-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 760;
}

.brief-form select,
.brief-form textarea {
  width: 100%;
  font-family: inherit;
  color: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #08090b;
  outline: none;
}

.brief-form select {
  min-height: 46px;
  padding: 0 12px;
  font-size: 0.95rem;
  font-weight: 760;
  letter-spacing: 0;
}

.brief-form select option {
  color: #ffffff;
  background: #08090b;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.95rem;
  font-weight: 760;
  letter-spacing: 0;
}

.brief-form textarea {
  resize: vertical;
  min-height: 112px;
  padding: 12px;
}

.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.mini-player {
  position: fixed;
  z-index: 131;
  right: var(--mini-player-offset);
  bottom: var(--mini-player-offset);
  width: var(--mini-player-width);
  overflow: hidden;
  background: #000000;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.66),
    0 0 44px rgba(14, 165, 233, 0.18),
    var(--surface-sheen);
  backdrop-filter: blur(20px);
}

.mini-player[hidden] {
  display: none;
}

.mini-player-bar {
  min-height: var(--mini-player-bar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 8px 7px 12px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)),
    rgba(8, 9, 11, 0.94);
  border-bottom: 1px solid var(--line);
}

.mini-player-bar span {
  min-width: 0;
  overflow: hidden;
  font-size: 0.84rem;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-player-actions {
  display: inline-flex;
  gap: 6px;
  flex: 0 0 auto;
}

.mini-player-actions button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
  border-radius: 999px;
  line-height: 1;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.mini-player-actions button:hover,
.mini-player-actions button:focus-visible {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.24);
  transform: translateY(-1px);
}

.mini-player-stage {
  display: block;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.mini-player-stage iframe,
.mini-player-stage video,
.mini-player-stage img {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
}

.mini-player-stage video,
.mini-player-stage img {
  object-fit: contain;
}

.soderbot {
  position: fixed;
  z-index: 132;
  left: 18px;
  bottom: 18px;
  width: min(370px, calc(100vw - 36px));
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  pointer-events: none;
}

.soderbot > * {
  pointer-events: auto;
}

.soderbot-toggle {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px 10px 10px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(7, 8, 10, 0.78);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.52),
    0 0 34px rgba(14, 165, 233, 0.2),
    var(--surface-sheen);
  backdrop-filter: blur(24px) saturate(1.2);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease,
    background 200ms ease;
}

.soderbot-toggle:hover,
.soderbot-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.58),
    0 0 44px rgba(14, 165, 233, 0.28),
    var(--surface-sheen);
  transform: translateY(-2px);
}

.soderbot-mark {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 44%),
    #000000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 30px rgba(0, 0, 0, 0.38);
}

.soderbot-toggle-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-align: left;
}

.soderbot-toggle-copy strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.soderbot-toggle-copy small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
}

.soderbot-panel {
  display: grid;
  overflow: hidden;
  margin-bottom: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(6, 7, 9, 0.9);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.62),
    0 0 48px rgba(14, 165, 233, 0.24),
    var(--surface-sheen);
  backdrop-filter: blur(28px) saturate(1.25);
  transform-origin: bottom left;
  animation: soderbotIn 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.soderbot-panel[hidden] {
  display: none;
}

.soderbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 15px 12px;
  border-bottom: 1px solid var(--line);
}

.soderbot-header div {
  display: grid;
  gap: 2px;
}

.soderbot-header strong {
  color: #ffffff;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.soderbot-header span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.soderbot-header button {
  width: 32px;
  height: 32px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.soderbot-log {
  max-height: 310px;
  display: grid;
  gap: 9px;
  overflow: auto;
  padding: 14px 14px 10px;
}

.soderbot-message {
  width: fit-content;
  max-width: 92%;
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.42;
}

.soderbot-message.bot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.soderbot-message.user {
  justify-self: end;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(180deg, var(--accent-strong), var(--accent));
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.2);
}

.soderbot-actions,
.soderbot-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.soderbot-actions {
  margin-top: 9px;
}

.soderbot-actions button,
.soderbot-prompts button {
  min-height: 30px;
  padding: 0 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 760;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.soderbot-actions button:hover,
.soderbot-actions button:focus-visible,
.soderbot-prompts button:hover,
.soderbot-prompts button:focus-visible {
  background: rgba(14, 165, 233, 0.22);
  border-color: rgba(14, 165, 233, 0.58);
  transform: translateY(-1px);
}

.soderbot-prompts {
  padding: 0 14px 13px;
}

.soderbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.soderbot-form input {
  min-height: 40px;
  min-width: 0;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}

.soderbot-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.soderbot-form button {
  min-height: 40px;
  padding: 0 13px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  border: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 820;
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.24);
}

.site-footer {
  width: min(var(--max-width), calc(100% - 44px));
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 34px 0 46px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.site-footer strong,
.site-footer a {
  color: #ffffff;
}

.footer-socials,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-socials {
  gap: 8px;
}

.footer-partners {
  width: min(560px, 100%);
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 10px 0 2px;
}

.footer-partners p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.partner-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.76;
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.partner-logos a:hover,
.partner-logos a:focus-visible {
  opacity: 1;
  filter: drop-shadow(0 12px 28px rgba(255, 255, 255, 0.14));
  transform: translateY(-2px);
}

.partner-logos img {
  width: auto;
  max-width: 164px;
  max-height: 42px;
  display: block;
  object-fit: contain;
}

.partner-logos a:nth-child(2) img {
  max-width: 132px;
  max-height: 40px;
}

.footer-bottom a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--surface-sheen);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.36),
    var(--surface-sheen);
  transform: translateY(-2px);
}

.footer-socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0.76;
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  opacity: 1;
  filter: drop-shadow(0 8px 18px rgba(255, 255, 255, 0.16));
  transform: translateY(-2px);
}

.footer-bottom {
  gap: 10px 16px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.58);
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 820ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 820ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible,
.service-card.is-visible,
.team-card.is-visible,
.sustainability-card.is-visible,
.contact-person.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.service-card.is-visible:hover,
.team-card.is-visible:hover,
.sustainability-card.is-visible:hover,
.contact-person.is-visible:hover,
.faq-item.is-visible:hover {
  transform: translateY(-5px);
}

.service-card,
.team-card,
.sustainability-card,
.contact-person {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.services-grid .service-card:nth-child(2),
.team-grid .team-card:nth-child(2),
.sustainability-grid .sustainability-card:nth-child(2),
.contact-details .contact-person:nth-child(2),
.faq-list .faq-item:nth-child(2) {
  transition-delay: 70ms;
}

.services-grid .service-card:nth-child(3),
.sustainability-grid .sustainability-card:nth-child(3),
.faq-list .faq-item:nth-child(3) {
  transition-delay: 140ms;
}

.services-grid .service-card:nth-child(4),
.faq-list .faq-item:nth-child(4) {
  transition-delay: 210ms;
}

.services-grid .service-card:nth-child(5),
.faq-list .faq-item:nth-child(5) {
  transition-delay: 280ms;
}

.services-grid .service-card:nth-child(6) {
  transition-delay: 350ms;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes ambientGradient {
  from {
    background-position: 0% 0%, 100% 0%, 45% 35%, 0 0;
  }

  to {
    background-position: 28% 18%, 74% 32%, 58% 62%, 0 0;
  }
}

@keyframes heroAura {
  from {
    transform: translate3d(-1%, 1%, 0) scale(1);
    opacity: 0.2;
  }

  to {
    transform: translate3d(1.5%, -1.5%, 0) scale(1.06);
    opacity: 0.3;
  }
}

@keyframes soderbotIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 18px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .language-switch {
    justify-self: end;
  }

  .reference-shell,
  .intro-layout,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .faq-section .section-heading {
    position: static;
  }

  .reference-list {
    max-height: 430px;
  }

  .services-grid,
  .team-grid,
  .sustainability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
    --mini-player-offset: 10px;
    --mini-player-width: min(340px, calc(100vw - 20px));
  }

  .site-header {
    width: calc(100% - 18px);
    top: 9px;
    gap: 8px;
    padding: 8px;
  }

  .brand-logo {
    width: 120px;
  }

  .brand small {
    display: none;
  }

  .language-switch button {
    min-width: 29px;
    min-height: 24px;
    padding: 0 5px;
    font-size: 0.64rem;
  }

  .hero {
    min-height: 82svh;
    padding: 106px 18px 38px;
  }

  h1 {
    font-size: 2.7rem;
    line-height: 1;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero-copy,
  .intro-lead {
    font-size: 1.04rem;
  }

  .section {
    width: calc(100% - 34px);
    padding: 78px 0;
  }

  .showreel-frame {
    margin-top: 54px;
  }

  .services-grid,
  .team-grid,
  .sustainability-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 560px;
  }

  .reference-item {
    grid-template-columns: 104px 1fr;
  }

  .credit-list li {
    width: 100%;
    border-radius: 6px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .site-footer {
    width: calc(100% - 34px);
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .service-card,
  .team-card,
  .sustainability-card,
  .contact-person {
    filter: none;
    opacity: 1;
    transform: none;
  }

  body,
  body::before,
  .hero::after,
  .soderbot-panel {
    animation: none;
  }

  .service-card.is-visible:hover,
  .team-card.is-visible:hover,
  .sustainability-card.is-visible:hover,
  .contact-person.is-visible:hover,
  .faq-item.is-visible:hover {
    transform: none;
  }
}
