:root {
  --ivory: #f7f3ea;
  --stone: #c9c0b0;
  --charcoal: #151515;
  --ink: #202126;
  --midnight: #002f6c;
  --blue: #005da4;
  --slovenia-red: #d50000;
  --slovenia-sky: #72b6e6;
  --gold: #d50000;
  --muted: #6f6a60;
  --line: rgba(32, 33, 38, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px clamp(20px, 5vw, 64px);
  color: white;
  background: linear-gradient(180deg, rgba(9, 10, 12, 0.72), rgba(9, 10, 12, 0));
}

.brand {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover {
  opacity: 1;
  color: var(--slovenia-sky);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.language-switch button {
  min-width: 34px;
  border: 0;
  padding: 6px 7px;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.language-switch button.is-active {
  color: #171717;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.9) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 42, 0.96) 0%, rgba(4, 28, 68, 0.74) 38%, rgba(9, 10, 12, 0.16) 76%),
    linear-gradient(180deg, rgba(9, 10, 12, 0.02), rgba(4, 18, 42, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  max-width: 760px;
  font-size: clamp(70px, 13vw, 168px);
}

h2 {
  font-size: clamp(38px, 6vw, 78px);
}

h3 {
  font-size: clamp(27px, 3vw, 38px);
}

.hero-line {
  margin: 24px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

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

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-status {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 5vw, 64px);
  bottom: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-status span {
  padding-left: 16px;
  border-left: 1px solid rgba(213, 0, 0, 0.82);
}

.band,
.content-section,
.quote-band,
.media-grid,
.contact {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 6vw, 86px);
}

.section-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.lead {
  margin: 0;
  max-width: 740px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.36;
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: white;
  background: #111;
}

.values-strip span {
  padding: 30px clamp(20px, 5vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--slovenia-sky);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
}

.positions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.position-card {
  min-height: 280px;
  padding: clamp(28px, 5vw, 56px);
  border-right: 1px solid var(--line);
  background: #eee8dc;
}

.position-card.featured {
  color: white;
  background: var(--midnight);
}

.position-card h3 + p {
  margin: 18px 0 0;
  color: currentColor;
  opacity: 0.72;
}

.career-link {
  display: inline-flex;
  margin-top: 28px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  opacity: 0.86;
  text-transform: uppercase;
}

.career-link:hover {
  opacity: 1;
}

.career-links {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 86px);
  padding: clamp(70px, 9vw, 118px) clamp(20px, 6vw, 86px);
  color: white;
  background: #111;
}

.career-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.career-link-grid a {
  min-height: 150px;
  padding: 24px;
  background: #151515;
}

.career-link-grid a:hover {
  background: var(--midnight);
}

.career-link-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--slovenia-sky);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.career-link-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 82px);
  max-width: 1100px;
}

.text-columns p,
.quote-inner p,
.media-grid p,
.contact p,
.event-list p {
  margin: 0;
  color: var(--muted);
}

.quote-band {
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 47, 108, 0.98), rgba(0, 93, 164, 0.92)),
    var(--midnight);
}

.quote-inner {
  max-width: 980px;
}

blockquote {
  max-width: 980px;
  margin-bottom: 30px;
  font-size: clamp(44px, 7vw, 96px);
}

.quote-inner p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.gesture-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 86px);
  background: #eee8dc;
}

.gesture-feature img {
  width: 100%;
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.85) contrast(1.06);
}

.gesture-feature div {
  max-width: 620px;
}

.gesture-feature p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
}

.event-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.event-list article {
  padding: 28px 0 28px 28px;
  background: var(--ivory);
}

.event-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-list h3 {
  margin: 6px 0 10px;
  font-size: clamp(26px, 3vw, 40px);
}

.repertoire {
  background: #eee8dc;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud span {
  padding: 10px 14px;
  border: 1px solid rgba(32, 33, 38, 0.18);
  color: #383631;
  background: rgba(255, 255, 255, 0.38);
  font-size: 14px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--charcoal);
}

.media-grid article {
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  color: white;
  background: var(--charcoal);
}

.media-grid article:nth-child(2) {
  background: #21242a;
}

.media-grid article:nth-child(3) {
  background: var(--blue);
}

.media-grid h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.media-grid p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.media-grid a {
  display: inline-block;
  margin-top: 34px;
  color: var(--slovenia-sky);
  font-weight: 800;
}

.contact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  color: white;
  background: #111;
}

.contact div {
  max-width: 720px;
}

.contact h2 {
  margin-bottom: 20px;
}

.share-rail {
  position: fixed;
  z-index: 12;
  left: 14px;
  top: 50%;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.share-rail button,
.share-rail a,
.ai-toggle,
.ai-panel button {
  border: 1px solid rgba(213, 0, 0, 0.48);
  color: white;
  background: var(--gold);
  cursor: pointer;
  font-weight: 900;
}

.share-rail button,
.share-rail a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.ai-concierge {
  position: fixed;
  z-index: 12;
  right: 18px;
  bottom: 18px;
}

.ai-toggle {
  min-height: 46px;
  padding: 11px 16px;
}

.ai-panel {
  width: min(360px, calc(100vw - 36px));
  margin-bottom: 10px;
  padding: 16px;
  color: white;
  background: rgba(17, 26, 40, 0.98);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.ai-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.ai-panel-header button {
  width: 28px;
  height: 28px;
}

.ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.ai-suggestions button,
.ai-panel form button {
  padding: 8px 10px;
}

.ai-panel p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
}

.ai-panel form {
  display: flex;
  gap: 8px;
}

.ai-panel input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.64);
  background: #090909;
  font-size: 13px;
}

footer p {
  margin: 0;
}

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

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-content {
    margin-inline: 20px;
    width: calc(100% - 40px);
  }

  .hero-status {
    left: 20px;
    right: 20px;
  }

  .section-grid,
  .split,
  .text-columns,
  .positions,
  .media-grid,
  .values-strip,
  .gesture-feature,
  .career-links,
  .career-link-grid {
    grid-template-columns: 1fr;
  }

  .gesture-feature img {
    min-height: 280px;
  }

  .position-card {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event-list article {
    padding-left: 0;
  }

  .contact,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    font-size: 24px;
  }

  .nav {
    gap: 10px 14px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(58px, 19vw, 86px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .hero {
    min-height: 760px;
  }

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

  .button {
    width: 100%;
  }

  .hero-status {
    display: block;
  }

  .hero-status span {
    display: block;
    margin-top: 8px;
  }

  .share-rail {
    left: 8px;
  }

  .share-rail a,
  .share-rail button {
    width: 34px;
    height: 34px;
  }

  .band,
  .content-section,
  .quote-band,
  .media-grid,
  .contact {
    padding-block: 64px;
  }
}
