/* ─── RESET ─── */
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* ─── ROOT / VARS ─── */
  :root {
    --white: #ffffff;
    --off-white: #fff;
    --bg-grey: #9da3b0;
  }

  html, body {
    width: 100%;
    min-height: 100%;
    background: #fff;
    overflow-x: hidden;
  }

  /* ─── HERO WRAPPER ─── */
  .hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: clamp(400px, 70vh, 700px);
    height: clamp(400px, 95vh, 900px);
    overflow: hidden;
  }

  /* ─── BG IMAGE + KEN BURNS ─── */
  .hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .hero__headline {
    max-width: min(1280px, 100%);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 42px);
    box-sizing: border-box;
  }

  .hero__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Start zoomed-in, animate to normal */
    transform: scale(1.35);
    animation: bgZoomOut 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }

  @keyframes bgZoomOut {
    0%   { transform: scale(1.35); }
    100% { transform: scale(1); }
  }

  /* ─── NAVBAR ─── */
  .nav {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(16px, 2.5vw, 28px) clamp(20px, 4vw, 36px);
    width: 100%;
    max-width: min(1280px, 100%);
    margin: 0 auto;
    box-sizing: border-box;
  }

  .nav__lang {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
    user-select: none;
  }

  .nav__lang span {
    opacity: 0.55;
    margin: 0 3px;
  }

  /* Logo – "icam" wordmark recreated in pure CSS */
  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: baseline;
    gap: 1px;
    margin-top: 30px;
  }

  .nav__logo img {
    height: clamp(36px, 5vw, 50px);
    width: auto;
    filter: brightness(0) invert(1);
  }

  /* Hamburger */
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    cursor: pointer;
  }

  .nav__burger span {
    display: block;
    width: 100%;
    height: 1.8px;
    background: var(--white);
    border-radius: 0;
    transition: width 0.3s ease;
  }

  .nav__burger span:last-child {
    width: 22px;
  }

  /* ─── HEADLINE ─── */
  .hero__headline {
    width: 100%;
    max-width: 100vw;
    position: absolute;
    bottom: clamp(12px, 2vw, 20px);
    left: 0;
    right: 0;
    z-index: 10;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding-left: clamp(16px, 4vw, 42px);
    padding-right: clamp(16px, 4vw, 42px);
    box-sizing: border-box;
    pointer-events: none;
  }

  .hero__headline .line {
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 10vw, 125px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.05em;
    white-space: nowrap;
  }

  @media (max-width: 640px) {
    .hero__headline .line {
      white-space: normal;
      line-height: 1.1;
    }
  }

  /* ─── ROTATING WORD (line 2) ─── */
  .hero__headline .line--animated {
    /* display: flex;
    align-items: center;
    gap: 0.22em; */
  }

  .word-track {
    overflow: hidden;
    display: inline-flex;
    align-items: baseline;
    vertical-align: baseline;
    height: 1.05em;
    min-width: 4ch;
    position: relative;
  }

  .word-list {
    display: flex;
    flex-direction: column;
    transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .word-list .word {
    height: 1.05em;
    display: flex;
    align-items: baseline;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
  }

  /* ─── SCROLL INDICATOR (bottom-right chevron) ─── */
  .scroll-indicator {
    position: absolute;
    bottom: clamp(16px, 3vw, 28px);
    right: clamp(16px, 4vw, 40px);
    z-index: 10;
    width: clamp(14px, 2vw, 18px);
    height: clamp(14px, 2vw, 18px);
    opacity: 0.7;
    animation: bounce 2s ease infinite;
  }

  .scroll-indicator svg {
    width: 100%;
    height: 100%;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%      { transform: translateY(5px); opacity: 1; }
  }

  /* ─── CUSTOM THIN SCROLLBAR (just visual, page doesn't actually scroll) ─── */
  .scrollbar-track {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    z-index: 20;
    background: transparent;
  }

  .scrollbar-thumb {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 28%;
    background: rgba(255,255,255,0.55);
    border-radius: 2px;
    animation: scrollThumb 4s ease-in-out infinite alternate;
  }

  @keyframes scrollThumb {
    0%   { top: 0; }
    100% { top: 30%; }
  }
