@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');


/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #f5f4f0;
  color: #151515;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}


/* =========================
   VARIABLES
========================= */

:root {
  --red: #d20a2e;
  --red-dark: #ad0624;
  --black: #151515;
  --dark: #191919;
  --cream: #f5f4f0;
  --white: #ffffff;
  --gray: #6e6c65;
  --border: rgba(21, 21, 21, 0.12);
}


/* =========================
   GENERAL
========================= */

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 140px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #77746c;
}

.section-label > span:first-child {
  color: var(--red);
}

.label-line {
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.section-label.light {
  color: #a7a49b;
}

.section-label.light > span:first-child {
  color: #ffffff;
}


/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  background: var(--black);
  transition: 0.3s ease;
}

.navbar.scrolled {
  background: rgba(21, 21, 21, 0.96);
  backdrop-filter: blur(18px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  width: min(1320px, calc(100% - 56px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-shield {
  display: block;
  height: 38px;
  width: auto;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-wordmark strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--black);
}

.brand-wordmark .brand-country {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #6d6a63;
  margin-top: 5px;
}

.brand-wordmark .brand-suffix {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #9a968d;
  margin-top: 3px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 10px 18px;
  border-radius: 14px;
}

.desktop-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  margin-right: 22px;
  white-space: nowrap;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: 0.2s;
}

.desktop-nav a:hover {
  color: var(--red);
}

.lang-switch {
  display: flex;
  gap: 4px;
  margin-right: 16px;
}

.lang-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 7px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #4e4c47;
  transition: 0.2s;
}

.lang-btn:hover {
  border-color: var(--black);
}

.lang-btn.active {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.nav-inner .lang-switch .lang-btn {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
}

.nav-inner .lang-switch .lang-btn:hover {
  border-color: white;
}

.nav-inner .lang-switch .lang-btn.active {
  background: white;
  color: var(--black);
  border-color: white;
}

.lang-switch-mobile {
  display: none;
}

.nav-button {
  background: var(--red);
  color: white;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
  transition: 0.25s;
}

.nav-button:hover {
  background: var(--red-dark);
}

.nav-button span {
  font-size: 17px;
}

.menu-button {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 6px auto;
  transition: 0.25s;
}

.menu-button.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}


/* =========================
   CALL FAB
========================= */

.call-fab {
  position: fixed;
  right: 36px;
  bottom: 36px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 30px 14px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(210, 10, 46, 0.4), 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  animation: call-fab-intro 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

@keyframes call-fab-intro {
  0% { transform: scale(0.4) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.call-fab:hover,
.call-fab:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 48px rgba(210, 10, 46, 0.5), 0 8px 20px rgba(0, 0, 0, 0.25);
}

.call-fab:active {
  transform: translateY(-1px) scale(0.98);
}

.call-fab-ping {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: call-fab-ping 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes call-fab-ping {
  0% { transform: translateY(-50%) scale(0.7); opacity: 0.55; }
  70% { transform: translateY(-50%) scale(1.55); opacity: 0; }
  100% { transform: translateY(-50%) scale(1.55); opacity: 0; }
}

.call-fab-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-fab-icon svg {
  width: 25px;
  height: 25px;
  transform-origin: center;
}

.call-fab:hover .call-fab-icon svg {
  animation: call-fab-ring 0.5s ease;
}

@keyframes call-fab-ring {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-18deg); }
  40% { transform: rotate(16deg); }
  60% { transform: rotate(-12deg); }
  80% { transform: rotate(8deg); }
}

.call-fab-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  white-space: nowrap;
}

.call-fab-label {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.call-fab-number {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  max-height: 22px;
  opacity: 1;
  margin-top: 2px;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .call-fab {
    animation: none;
  }

  .call-fab-ping {
    animation: none;
    opacity: 0;
  }

  .call-fab:hover .call-fab-icon svg {
    animation: none;
  }
}

@media (max-width: 640px) {
  .call-fab {
    right: 18px;
    bottom: 22px;
    padding: 11px 22px 11px 11px;
    gap: 12px;
  }

  .call-fab-ping,
  .call-fab-icon {
    width: 50px;
    height: 50px;
  }

  .call-fab-icon svg {
    width: 21px;
    height: 21px;
  }

  .call-fab-label {
    font-size: 15px;
  }

  .call-fab-number {
    font-size: 12px;
    max-height: 20px;
    opacity: 1;
    margin-top: 2px;
  }
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(210, 10, 46, 0.08),
      transparent 32%
    ),
    var(--cream);
}

.hero-background {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -300px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(21, 21, 21, 0.18);
  border-radius: 50%;
}

.hero-background::before,
.hero-background::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 50%;
}

.hero-background::before {
  inset: 90px;
}

.hero-background::after {
  inset: 180px;
}

.radar-pulse {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(210, 10, 46, 0.7);
  border-radius: 50%;
  transform: scale(0.2);
  opacity: 0;
  animation: radar-pulse 4s cubic-bezier(0.2, 0.6, 0.35, 1) infinite;
}

.radar-pulse:nth-child(2) {
  animation-delay: 1.3s;
}

.radar-pulse:nth-child(3) {
  animation-delay: 2.6s;
}

.radar-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--red);
  border-radius: 50%;
  animation: radar-blip 2s ease-in-out infinite;
}

@keyframes radar-pulse {
  0% {
    transform: scale(0.2);
    opacity: 0.85;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes radar-blip {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(210, 10, 46, 0.45);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(210, 10, 46, 0);
  }
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  animation: radar-sweep-spin 5.5s linear infinite;
}

.radar-sweep::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg,
    rgba(210, 10, 46, 0.24),
    rgba(210, 10, 46, 0.05) 5%,
    transparent 11%,
    transparent 100%
  );
}

@keyframes radar-sweep-spin {
  to { transform: rotate(360deg); }
}

.fire-contact {
  position: absolute;
  top: 38%;
  left: 32%;
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  opacity: 0;
  animation: fire-detect-cycle 5.5s ease-in-out infinite;
  animation-delay: -1.411s;
}

.fire-aim-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  color: var(--black);
}

.aim-center-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: aim-pulse 1s ease-in-out infinite;
}

@keyframes aim-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.6); }
}

.fire-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--red);
  animation: fire-lock 5.5s ease-in-out infinite;
  animation-delay: -1.411s;
}

.fire-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.fire-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.fire-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.fire-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

@keyframes fire-detect-cycle {
  0%, 9% { opacity: 0; }
  10% { opacity: 1; }
  62% { opacity: 1; }
  72%, 100% { opacity: 0; }
}

@keyframes fire-lock {
  0%, 8% { transform: scale(1.9); }
  12% { transform: scale(1); }
  62% { transform: scale(1); }
  72%, 100% { transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .radar-pulse,
  .radar-dot {
    animation: none;
  }

  .radar-sweep,
  .fire-contact {
    display: none;
  }
}

.hero-content {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #67645e;
  margin-bottom: 28px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(210, 10, 46, 0.1);
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 7vw, 105px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 800;
  max-width: 920px;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-description {
  max-width: 610px;
  margin-top: 35px;
  color: #5e5b55;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 17px 23px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s;
}

.button-primary {
  background: var(--red);
  color: white;
}

.button-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button-secondary {
  border: 1px solid var(--border);
}

.button-secondary:hover {
  background: white;
}

.hero-trust {
  display: flex;
  align-items: center;
  margin-top: 80px;
  gap: 30px;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.trust-item span {
  margin-top: 4px;
  color: #77746d;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.trust-line {
  width: 1px;
  height: 35px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  right: 45px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 14px;
  writing-mode: vertical-rl;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #858179;
}

.scroll-line {
  height: 55px;
  width: 1px;
  background: #aaa69e;
}


/* =========================
   INTRO
========================= */

.intro {
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.intro-content {
  max-width: 820px;
}

.intro-content h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -0.055em;
  line-height: 1;
  font-weight: 800;
}

.intro-content h2 em {
  display: block;
  color: var(--red);
  font-style: normal;
}

.intro-content p {
  max-width: 640px;
  color: #6d6a63;
  font-size: 16px;
  line-height: 1.75;
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  gap: 20px;
  margin-top: 35px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid #bbb8b0;
  padding-bottom: 8px;
}

.text-link span {
  color: var(--red);
}


/* =========================
   SERVICES
========================= */

.services {
  background: #f5f4f0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 70px;
}

.section-header h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-top: 28px;
}

.section-header h2 span {
  display: block;
  color: #8a877f;
}

.section-header > p {
  max-width: 330px;
  align-self: end;
  color: #77746d;
  font-size: 14px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #d9d7d0;
}

.service-card {
  background: #f5f4f0;
  min-height: 390px;
  padding: 42px;
  position: relative;
  transition: 0.3s;
}

.service-card:hover {
  background: white;
  transform: translateY(-4px);
}

.service-card.featured {
  background: var(--black);
  color: white;
}

.service-card.featured:hover {
  background: #202020;
}

.card-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.45;
}

.service-icon {
  width: 56px;
  height: 62px;
  margin-bottom: 70px;
  position: relative;
  color: var(--black);
}

.service-card.featured .service-icon {
  color: white;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}


/* --- Flame (Brandvagt) --- */

.icon-flame {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.icon-flame .flame {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform-origin: bottom center;
  animation: flame-sway 2.2s ease-in-out infinite;
}

.icon-flame .flame i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 0;
  transform: rotate(135deg);
}

.icon-flame .flame-back {
  width: 42px;
  height: 42px;
  margin-left: -21px;
  animation-duration: 2.6s;
}

.icon-flame .flame-back i {
  background: var(--red-dark);
  opacity: 0.55;
}

.icon-flame .flame-mid {
  width: 30px;
  height: 30px;
  margin-left: -15px;
  animation-duration: 2.1s;
  animation-delay: 0.15s;
}

.icon-flame .flame-mid i {
  background: var(--red);
}

.icon-flame .flame-core {
  width: 14px;
  height: 14px;
  margin-left: -7px;
  bottom: 3px;
  animation-duration: 1.7s;
  animation-delay: 0.3s;
}

.icon-flame .flame-core i {
  background: #ffb545;
}

@keyframes flame-sway {
  0%, 100% { transform: scaleY(1) translateY(0); }
  30% { transform: scaleY(1.16) translateY(-4px); }
  60% { transform: scaleY(0.92) translateY(1px); }
}


/* --- Digger (Byggepladser) --- */

.icon-digger .dig-arm {
  transform-box: view-box;
  transform-origin: 16.5px 21px;
  animation: dig-motion 2.8s ease-in-out infinite;
}

@keyframes dig-motion {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(12deg); }
}


/* --- Spotlight (Events) --- */

.icon-spotlight .spotlight-beam {
  transform-box: view-box;
  transform-origin: 24px 15px;
  animation: spotlight-sweep 4.2s ease-in-out infinite;
}

@keyframes spotlight-sweep {
  0%, 100% { transform: rotate(-18deg); }
  50% { transform: rotate(18deg); }
}


/* --- Building (Ejendomme) --- */

.icon-building .win {
  opacity: 0.22;
  animation: window-glow 3.6s ease-in-out infinite;
}

@keyframes window-glow {
  0%, 100% { opacity: 0.22; }
  45%, 55% { opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
  .icon-flame .flame,
  .icon-digger .dig-arm,
  .icon-spotlight .spotlight-beam,
  .icon-building .win {
    animation: none;
  }
}

.service-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
  margin-bottom: 15px;
}

.service-card p {
  color: #77746d;
  max-width: 430px;
  font-size: 14px;
  line-height: 1.7;
}

.service-card.featured p {
  color: #aaa8a2;
}

.service-card a {
  position: absolute;
  bottom: 40px;
  left: 42px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-card a span {
  margin-left: 12px;
  color: var(--red);
}


/* =========================
   STATEMENT
========================= */

.statement {
  background: var(--black);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}

.statement-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(
    circle,
    rgba(210, 10, 46, 0.22),
    transparent 65%
  );
}

.statement-content {
  position: relative;
}

.statement h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(55px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin-top: 40px;
}

.statement h2 span {
  color: #88857e;
}

.statement p {
  color: #aaa8a2;
  margin-top: 35px;
  font-size: 16px;
}

.button-light {
  margin-top: 40px;
  background: white;
  color: var(--black);
}

.button-light:hover {
  background: var(--red);
  color: white;
}


/* =========================
   WHY US
========================= */

.why-us {
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
  margin-top: 80px;
}

.why-title h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.why-title h2 span {
  display: block;
  color: var(--red);
}

.why-title p {
  max-width: 430px;
  color: #77746d;
  line-height: 1.7;
  margin-top: 30px;
}

.benefit {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.benefit:last-child {
  border-bottom: 1px solid var(--border);
}

.benefit-icon {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
}

.benefit h3 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.benefit p {
  color: #77746d;
  font-size: 13px;
  line-height: 1.6;
  max-width: 450px;
  margin-top: 7px;
}


/* =========================
   ABOUT
========================= */

.about {
  background: #f5f4f0;
}

.about-content {
  max-width: 720px;
}

.case-visual {
  height: 540px;
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.case-box {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 2;
  color: white;
  display: flex;
  align-items: end;
  gap: 10px;
}

.large-number {
  font-family: "Manrope", sans-serif;
  font-size: 110px;
  font-weight: 800;
  line-height: 0.75;
  letter-spacing: -0.08em;
}

.number-label {
  color: #aaa;
  font-size: 12px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.case-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 3.2s ease;
}

.case-photo.is-active {
  opacity: 1;
  transform: scale(1.06);
  z-index: 1;
}

.case-caption {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  background: rgba(21, 21, 21, 0.55);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 9px 14px;
  border-radius: 100px;
  transition: opacity 0.3s ease;
}

.case-dots {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.case-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.case-dot.is-active {
  background: #fff;
  transform: scale(1.35);
}

.case-box::before {
  content: "";
  position: absolute;
  inset: -20px -24px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
}

.about-content h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-top: 35px;
}

.about-content h2 span {
  display: block;
  color: var(--red);
}

.about-content p {
  color: #77746d;
  line-height: 1.7;
  margin-top: 25px;
  max-width: 500px;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.about-points div {
  font-size: 12px;
  font-weight: 600;
}

.about-points span {
  color: var(--red);
  margin-right: 10px;
}


/* =========================
   CAREER
========================= */

.career {
  background: white;
}

.career-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.career-copy h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-top: 28px;
}

.career-copy h2 span {
  display: block;
  color: var(--red);
}

.career-copy p {
  color: #6d6a63;
  max-width: 480px;
  margin-top: 22px;
  line-height: 1.7;
}

.career-card {
  background: var(--black);
  color: white;
  padding: 42px;
}

.career-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.career-card p {
  color: #aaa8a2;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.career-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--red);
  color: white;
  padding: 18px 20px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s;
}

.career-button:hover {
  background: var(--red-dark);
}

.career-card .email-link {
  color: #918d85;
}


/* =========================
   CONTACT
========================= */

.contact {
  background: var(--red);
  color: white;
  padding: 130px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 100px;
  align-items: center;
}

.contact-copy h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 6vw, 85px);
  line-height: 0.93;
  letter-spacing: -0.065em;
  margin-top: 38px;
}

.contact-copy h2 span {
  display: block;
  color: #4b0010;
}

.contact-copy p {
  max-width: 510px;
  margin-top: 30px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.contact-card {
  background: white;
  color: var(--black);
  padding: 42px;
}

.contact-card-top {
  display: flex;
  justify-content: space-between;
  color: #8b8880;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.contact-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-top: 60px;
}

.contact-card p {
  color: #77746d;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 20px;
}

.contact-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
  color: white;
  padding: 18px 20px;
  margin-top: 35px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s;
}

.contact-button:hover {
  background: var(--red);
}

.email-link {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  color: #77746d;
}

.contact-cvr {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  color: #77746d;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: #151515;
  color: white;
  padding: 70px 0 25px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 70px;
}

.footer-brand p {
  color: #77746d;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 25px;
}

.footer-links {
  display: flex;
  gap: 120px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links span {
  font-size: 9px;
  color: #77746d;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 12px;
  color: #bbb9b3;
}

.footer-links a:hover {
  color: white;
}

.footer-links .footer-cvr {
  font-size: 12px;
  color: #77746d;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #696762;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.footer-bottom a {
  color: #aaa;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .desktop-nav,
  .nav-button,
  .navbar > .nav-inner > .lang-switch {
    display: none;
  }

  .lang-switch-mobile {
    display: flex;
    margin-top: 6px;
  }

  .hero-background {
    width: 420px;
    height: 420px;
    right: -135px;
    top: -30px;
    transform: none;
  }

  .fire-contact {
    top: 39%;
    left: 62%;
    animation-delay: 0.155s;
  }

  .fire-contact .fire-corner {
    animation-delay: 0.155s;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    display: flex;
    position: absolute;
    top: 76px;
    left: 24px;
    right: 24px;
    background: white;
    padding: 25px;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-cta {
    background: var(--red);
    color: white;
    padding: 15px;
  }

  .hero {
    min-height: 850px;
  }

  .hero h1 {
    font-size: clamp(50px, 14vw, 80px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    margin-top: 55px;
    gap: 18px;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .case-visual {
    height: 430px;
  }

  .section {
    padding: 95px 0;
  }

  .section-header {
    flex-direction: column;
    gap: 30px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .career-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-top {
    flex-direction: column;
    gap: 60px;
  }

  .footer-links {
    gap: 60px;
  }

}


@media (max-width: 550px) {

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

  .nav-inner {
    width: calc(100% - 32px);
  }

  .brand-mark {
    width: 34px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 51px;
  }

  .hero-trust {
    gap: 12px;
  }

  .trust-item strong {
    font-size: 16px;
  }

  .trust-item span {
    font-size: 8px;
  }

  .service-card {
    padding: 30px;
    min-height: 360px;
  }

  .service-icon {
    margin-bottom: 65px;
  }

  .service-card a {
    left: 30px;
    bottom: 30px;
  }

  .statement {
    padding: 110px 0;
  }

  .statement h2 {
    font-size: 56px;
  }

  .case-visual {
    height: 350px;
  }

  .large-number {
    font-size: 80px;
  }

  .about-circle {
    width: 270px;
    height: 270px;
    right: -130px;
  }

  .contact {
    padding: 95px 0;
  }

  .contact-card {
    padding: 28px;
  }

  .contact-card h3 {
    font-size: 30px;
    margin-top: 45px;
  }

  .footer-links {
    flex-direction: column;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

}


