:root {
  --paper: #f4f2ed;
  --ink: #101114;
  --muted: #666862;
  --line: rgba(16, 17, 20, .16);
  --blue: #1f4f99;
  --white: #fff;
  --max: 1240px;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 22px 28px;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 84px;
  z-index: -1;
  background: rgba(244, 242, 237, .84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.site-header.is-scrolled::before { border-color: var(--line); }
.brand {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
}
nav { display: flex; align-items: center; gap: 21px; }
nav a {
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  color: var(--muted);
  transition: color .2s ease;
}
nav a:hover, nav a:focus-visible { color: var(--ink); }
.language-button {
  min-width: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .58);
  font-weight: 750;
  cursor: pointer;
}
.language-button:hover { background: var(--white); }

.section {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 112px 28px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  align-items: center;
  gap: clamp(44px, 5vw, 78px);
  min-height: 100svh;
  padding-top: 126px;
  padding-bottom: 72px;
}
.eyebrow, .section-label {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 24px 0 26px;
  font-size: clamp(72px, 10vw, 152px);
  line-height: .82;
  letter-spacing: -.082em;
  font-weight: 800;
}
.role {
  margin: 0 0 16px;
  max-width: 760px;
  font-size: clamp(23px, 2.3vw, 36px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 650;
}
.hero-intro {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--white); background: var(--ink); }
.button-light { border: 1px solid var(--line); background: rgba(255, 255, 255, .62); }
.hero-photo {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
}
.hero-photo picture {
  display: block;
  width: 100%;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(16, 17, 20, .11);
}
.photo-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
}

.signal-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .38);
}
.signal-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 22px 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.signal-track i { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }

.section-heading {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 54px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.section-number { margin: 0; color: var(--muted); font-size: 12px; font-weight: 750; }
.about { display: grid; grid-template-columns: .42fr 1.58fr; gap: 70px; }
.about .section-heading { display: block; border: 0; margin: 0; }
.about .section-label { margin-top: 12px; }
h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.058em;
  font-weight: 720;
}
.prose-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
}
.prose-columns p, .outside-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.expertise-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .46);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}
.expertise-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 24px 54px rgba(16, 17, 20, .07);
}
.card-index { color: var(--muted); font-size: 12px; font-weight: 750; }
.expertise-card h3 {
  margin: auto 0 16px;
  font-size: clamp(29px, 3vw, 45px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.expertise-card p { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }

.career-list { border-top: 1px solid var(--line); }
.career-item {
  display: grid;
  grid-template-columns: minmax(170px, .42fr) 1.58fr;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.career-date { color: var(--muted); font-size: 14px; font-weight: 750; }
.company { margin: 0 0 9px; color: var(--blue); font-size: 13px; font-weight: 800; }
.career-role h3 { margin: 0 0 14px; font-size: clamp(27px, 3vw, 42px); line-height: 1.08; letter-spacing: -.04em; }
.career-role > p:last-child { max-width: 780px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }

.focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.focus-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 26px;
  align-items: start;
  min-height: 180px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}
.focus-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.27);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
}
.focus-card p { margin: 4px 0 0; font-size: clamp(19px, 2vw, 27px); line-height: 1.25; letter-spacing: -.025em; }


.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.initiative-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .48);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}
.initiative-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 54px rgba(16, 17, 20, .07);
}
.initiative-tag {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
}
.initiative-card h3 {
  margin: 92px 0 16px;
  max-width: 520px;
  font-size: clamp(29px, 3vw, 45px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.initiative-card > p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.values-list { border-top: 1px solid var(--line); }
.value-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.value-item h3 { margin: 0; font-size: clamp(31px, 4vw, 58px); letter-spacing: -.05em; }
.value-item p { margin: 0; color: var(--muted); font-size: 18px; }

.outside {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}
.outside-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.outside-copy .section-label { margin: 12px 0 26px; }
.outside-copy h2 { font-size: clamp(42px, 5vw, 70px); }
.outside-copy > p:last-child { margin-top: 34px; max-width: 660px; }

.contact {
  width: 100%;
  max-width: none;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  color: var(--white);
  background: var(--ink);
}
.contact-inner { width: min(100%, var(--max)); margin-inline: auto; }
.contact .section-label { color: #a7bff0; }
.contact h2 { margin: 24px 0 38px; font-size: clamp(72px, 11vw, 160px); }
.email-link {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  font-size: clamp(23px, 3vw, 42px);
  font-weight: 650;
  letter-spacing: -.03em;
  text-decoration: none;
}
.contact-meta { display: flex; gap: 30px; margin-top: 50px; color: rgba(255,255,255,.62); }
.contact-meta a { color: var(--white); text-decoration: none; }

footer {
  padding: 72px max(28px, calc((100vw - var(--max)) / 2 + 28px)) 32px;
  color: var(--white);
  background: var(--ink);
}
.footer-statement {
  margin: 0 0 84px;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 720;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.56);
  font-size: 13px;
}
.footer-bottom a { color: inherit; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .72s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(31, 79, 153, .38); outline-offset: 4px; }

@media (max-width: 900px) {
  nav a { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 36px;
    padding-top: 112px;
    padding-bottom: 62px;
  }

  .hero-photo {
    order: -1;
    width: min(68vw, 330px);
    justify-self: center;
  }

  .hero-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero h1 { font-size: clamp(66px, 16vw, 104px); }

  .signal-track {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .signal-track::-webkit-scrollbar { display: none; }

  .about {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about .section-heading {
    display: grid;
    grid-template-columns: 60px 1fr;
  }

  .prose-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .outside {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .outside-copy { order: 1; }
  .outside-photo {
    order: 2;
    width: min(76vw, 360px);
    justify-self: center;
  }

  .outside-photo img {
    width: 100%;
    height: min(76vw, 330px);
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 50% 22%;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-header::before {
    height: 72px;
  }

  .brand {
    width: 42px;
    height: 42px;
  }

  .language-button {
    min-width: 42px;
    padding: 8px 11px;
  }

  .section {
    padding: 66px 20px;
  }

  .hero {
    gap: 30px;
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .hero-photo {
    width: min(62vw, 270px);
  }

  .photo-note {
    display: none;
  }

  .hero h1 {
    margin: 18px 0 22px;
    font-size: clamp(58px, 17vw, 68px);
    line-height: .84;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .16em;
  }

  .role {
    max-width: 340px;
    font-size: 24px;
    line-height: 1.1;
  }

  .hero-intro {
    max-width: 345px;
    font-size: 17px;
    line-height: 1.52;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  /* Informativna traka nema funkciju na malom ekranu i samo stvara horizontalni višak. */
  .signal-strip {
    display: none;
  }

  .section-heading {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 15px;
  }

  h2 {
    font-size: clamp(39px, 12vw, 48px);
  }

  .about {
    gap: 26px;
  }

  .about .section-heading {
    grid-template-columns: 44px 1fr;
  }

  .prose-columns {
    margin-top: 34px;
    gap: 18px;
  }

  .prose-columns p,
  .outside-copy > p:last-child {
    font-size: 17px;
    line-height: 1.65;
  }

  .expertise-grid,
  .focus-grid,
  .initiatives-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .expertise-card {
    min-height: 245px;
    padding: 24px;
  }

  .expertise-card h3 {
    font-size: 32px;
  }

  .focus-card {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: 150px;
    padding: 22px;
  }

  .focus-mark {
    width: 46px;
    height: 46px;
  }

  .focus-card p {
    font-size: 19px;
  }

  .initiative-card {
    min-height: 240px;
    padding: 24px;
  }

  .initiative-card h3 {
    margin-top: 48px;
    font-size: 32px;
  }

  .career-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 31px 0;
  }

  .career-role h3 {
    font-size: 29px;
  }

  .value-item {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 25px 0;
  }

  .value-item h3 {
    font-size: 39px;
  }

  .outside {
    gap: 30px;
  }

  .outside-copy .section-label {
    margin: 10px 0 22px;
  }

  .outside-copy h2 {
    font-size: 43px;
  }

  .outside-copy > p:last-child {
    margin-top: 25px;
  }

  .outside-photo {
    width: min(78vw, 305px);
  }

  .outside-photo img {
    height: min(72vw, 285px);
    border-radius: 22px;
  }

  .contact {
    padding-inline: 20px;
  }

  .contact h2 {
    margin-bottom: 30px;
    font-size: 59px;
  }

  .email-link {
    font-size: 22px;
  }

  .contact-meta {
    flex-direction: column;
    gap: 10px;
    margin-top: 38px;
  }

  footer {
    padding-inline: 20px;
  }

  .footer-statement {
    margin-bottom: 58px;
    font-size: 45px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
