:root {
  --yes-teal: #49c5b1;
  --yes-dark-grey: #2a2b2d;
  --yes-black: #111213;
  --yes-blue-grey: #4e555e;
  --yes-clear-grey: #adafb0;
  --yes-light: #f8f9fa;
  --yes-shell: min(1440px, calc(100vw - 2rem));
  --yes-border: 1px solid rgba(78, 85, 94, 0.2);
  --yes-shadow: 2px 2px 0 rgba(173, 175, 176, 0.3);
  --yes-shadow-accent: 3px 3px 0 var(--yes-teal);
}

html {
  scroll-behavior: smooth;
}

html.yes-eu-dark {
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--yes-light);
  color: var(--yes-blue-grey);
  font-family: "Roboto", sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

html.yes-eu-dark body {
  background: var(--yes-black);
  color: var(--yes-clear-grey);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  color: var(--yes-dark-grey);
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

html.yes-eu-dark h1,
html.yes-eu-dark h2,
html.yes-eu-dark h3,
html.yes-eu-dark h4,
html.yes-eu-dark h5,
html.yes-eu-dark h6 {
  color: #fff;
}

p {
  margin: 0 0 1rem;
}

.yes-eu-shell {
  width: var(--yes-shell);
  margin: 0 auto;
}

.yes-eu-main {
  padding-top: 4.5rem;
}

.yes-eu-section {
  padding: 5rem 0;
}

.yes-eu-section--dark {
  background: var(--yes-black);
  color: #fff;
}

.yes-eu-section--band {
  background: #fff;
}

html.yes-eu-dark .yes-eu-section--band {
  background: var(--yes-black);
}

.yes-eu-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: var(--yes-border);
  background: rgba(248, 249, 250, 0.94);
  backdrop-filter: blur(14px);
}

html.yes-eu-dark .yes-eu-header {
  background: rgba(17, 18, 19, 0.94);
  border-bottom-color: rgba(78, 85, 94, 0.45);
}

.yes-eu-header__inner,
.yes-eu-header__actions,
.yes-eu-menu,
.yes-eu-actions,
.yes-eu-section-heading,
.yes-eu-footer__bottom {
  display: flex;
  align-items: center;
}

.yes-eu-header__inner,
.yes-eu-section-heading,
.yes-eu-footer__bottom {
  justify-content: space-between;
}

.yes-eu-header__inner {
  min-height: 4.5rem;
  gap: 1.5rem;
}

.yes-eu-brand {
  flex: 0 0 auto;
}

.site-logo,
.custom-logo-link {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-logo img,
.custom-logo-link img {
  width: auto;
  max-height: 2.5rem;
}

.yes-eu-nav {
  flex: 1 1 auto;
}

.yes-eu-menu,
.yes-eu-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.yes-eu-menu {
  gap: 1.25rem;
}

.yes-eu-menu a,
.yes-eu-footer-menu a {
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.yes-eu-header__actions,
.yes-eu-actions {
  gap: 0.75rem;
}

.yes-eu-theme-toggle,
.yes-eu-button {
  border: 1px solid var(--yes-teal);
  border-radius: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.yes-eu-theme-toggle {
  padding: 0.75rem 0.9rem;
  background: transparent;
  color: var(--yes-dark-grey);
  cursor: pointer;
}

html.yes-eu-dark .yes-eu-theme-toggle {
  color: #fff;
}

.yes-eu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  transition: 0.3s ease;
}

.yes-eu-button--solid {
  background: var(--yes-teal);
  color: var(--yes-black);
  box-shadow: var(--yes-shadow-accent);
}

.yes-eu-button--solid:hover {
  transform: translate(-2px, -2px);
}

.yes-eu-button--outline {
  background: transparent;
  color: #fff;
}

.yes-eu-hero__grid,
.yes-eu-split-grid,
.yes-eu-band,
.yes-eu-footer__grid,
.yes-eu-card-grid {
  display: grid;
  gap: 1.5rem;
}

.yes-eu-hero__grid,
.yes-eu-split-grid,
.yes-eu-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yes-eu-hero {
  position: relative;
  overflow: hidden;
  background: var(--yes-black);
  color: #fff;
  padding-bottom: 3rem;
}

.yes-eu-hero__visuals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 72vh;
}

.yes-eu-hero__panel {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
}

.yes-eu-hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 18, 19, 0.2), rgba(17, 18, 19, 0.65));
}

.yes-eu-hero__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yes-eu-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.yes-eu-hero__shell {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
}

.yes-eu-hero__content {
  max-width: 40rem;
}

.yes-eu-hero__title {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.96;
  color: #fff;
  margin-bottom: 1.25rem;
}

.yes-eu-hero__form {
  background: rgba(42, 43, 45, 0.45);
  border-color: rgba(173, 175, 176, 0.35);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.yes-eu-form-grid {
  display: grid;
  gap: 0.9rem;
}

.yes-eu-field {
  display: grid;
  gap: 0.4rem;
}

.yes-eu-field label {
  color: var(--yes-clear-grey);
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yes-eu-field input,
.yes-eu-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0.9rem 1rem;
  font: inherit;
}

.yes-eu-field input::placeholder,
.yes-eu-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.yes-eu-button--full {
  width: 100%;
}

.yes-eu-hero-tiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -4rem;
  position: relative;
  z-index: 5;
}

.yes-eu-kicker {
  margin-bottom: 0.75rem;
  color: var(--yes-teal);
  font-family: "Orbitron", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yes-eu-lead {
  max-width: 42rem;
  font-size: 1.075rem;
}

.yes-eu-card {
  border: var(--yes-border);
  box-shadow: var(--yes-shadow);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
}

html.yes-eu-dark .yes-eu-card {
  border-color: rgba(78, 85, 94, 0.45);
  background: rgba(42, 43, 45, 0.65);
  box-shadow: 2px 2px 0 rgba(78, 85, 94, 0.5);
}

.yes-eu-card--media {
  min-height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yes-clear-grey);
}

.yes-eu-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yes-eu-card-grid--compact,
.yes-eu-card-grid--products {
  margin-top: 1.5rem;
}

.yes-eu-solution-tile,
.yes-eu-product-card,
.yes-eu-story-card {
  border: var(--yes-border);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--yes-shadow);
  padding: 1.5rem;
}

.yes-eu-solution-tile {
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.yes-eu-solution-tile h3,
.yes-eu-product-card h3,
.yes-eu-story-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.yes-eu-solution-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--yes-teal);
  color: var(--yes-teal);
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.yes-eu-editorial-pair {
  display: grid;
  gap: 2rem;
}

.yes-eu-editorial-block {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.yes-eu-editorial-block__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 21rem;
}

.yes-eu-editorial-block__media {
  border: var(--yes-border);
  box-shadow: var(--yes-shadow);
  overflow: hidden;
  min-height: 21rem;
}

.yes-eu-editorial-block__media img,
.yes-eu-home-bess__media img,
.yes-eu-network__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yes-eu-home-bess {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: #fff;
}

html.yes-eu-dark .yes-eu-home-bess {
  background: var(--yes-black);
}

.yes-eu-home-bess__copy {
  padding: 3rem;
  background: #fff;
}

html.yes-eu-dark .yes-eu-home-bess__copy {
  background: var(--yes-black);
}

.yes-eu-home-bess__media {
  min-height: 34rem;
}

.yes-eu-news-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  border: var(--yes-border);
  box-shadow: var(--yes-shadow);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

html.yes-eu-dark .yes-eu-news-feature {
  background: rgba(42, 43, 45, 0.65);
}

.yes-eu-news-feature__media {
  min-height: 24rem;
  background:
    linear-gradient(180deg, rgba(17, 18, 19, 0.1), rgba(17, 18, 19, 0.4)),
    url("https://yes-eu-2026.vercel.app/images/news-room1.jpg") center/cover no-repeat;
}

.yes-eu-news-feature__copy {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yes-eu-news-date,
.yes-eu-inline-link {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.yes-eu-news-date {
  color: var(--yes-teal);
  font-size: 0.78rem;
}

.yes-eu-inline-link {
  color: var(--yes-teal);
  font-size: 0.78rem;
  font-weight: 700;
}

.yes-eu-network {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2rem;
  align-items: center;
}

.yes-eu-network__copy {
  position: relative;
  z-index: 2;
}

.yes-eu-network__map {
  min-height: 34rem;
  display: flex;
  align-items: center;
}

.yes-eu-muted {
  color: var(--yes-blue-grey);
}

html.yes-eu-dark .yes-eu-muted {
  color: var(--yes-clear-grey);
}

.yes-eu-footer {
  border-top: var(--yes-border);
  padding: 4rem 0 2rem;
  background: var(--yes-light);
}

html.yes-eu-dark .yes-eu-footer {
  border-top-color: rgba(78, 85, 94, 0.45);
  background: #0f1011;
}

.yes-eu-footer__grid {
  grid-template-columns: 2fr 2fr 1fr;
  margin-bottom: 2rem;
}

.yes-eu-footer__title {
  font-size: 1rem;
}

.yes-eu-footer-menu li + li {
  margin-top: 0.5rem;
}

.yes-eu-page-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(73, 197, 177, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(17, 18, 19, 0.96), rgba(17, 18, 19, 0.92));
  color: #fff;
}

.yes-eu-page-hero--compact {
  padding-top: 6rem;
}

.yes-eu-page-hero__eyebrow,
.yes-eu-post-card__meta,
.yes-eu-entry__meta {
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yes-eu-page-hero__eyebrow,
.yes-eu-post-card__meta {
  color: var(--yes-teal);
}

.yes-eu-page-hero__title {
  max-width: 48rem;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
}

.yes-eu-page-hero__text {
  max-width: 44rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.yes-eu-page-hero__actions,
.yes-eu-entry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.yes-eu-button--dark {
  color: var(--yes-dark-grey);
  border-color: rgba(78, 85, 94, 0.35);
}

html.yes-eu-dark .yes-eu-button--dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.yes-eu-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.yes-eu-post-grid--archive {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.yes-eu-post-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.yes-eu-post-card h2 {
  margin-bottom: 0;
  font-size: 1.3rem;
}

.yes-eu-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 1.5rem;
  align-items: start;
}

.yes-eu-entry__content,
.yes-eu-entry__aside,
.yes-eu-contact-card {
  background: #fff;
}

html.yes-eu-dark .yes-eu-entry__content,
html.yes-eu-dark .yes-eu-entry__aside,
html.yes-eu-dark .yes-eu-contact-card {
  background: rgba(42, 43, 45, 0.72);
}

.yes-eu-entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  color: var(--yes-teal);
}

.yes-eu-richtext > *:first-child {
  margin-top: 0;
}

.yes-eu-richtext > *:last-child {
  margin-bottom: 0;
}

.yes-eu-richtext ul,
.yes-eu-richtext ol {
  padding-left: 1.25rem;
}

.yes-eu-richtext li + li {
  margin-top: 0.35rem;
}

.yes-eu-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 1.5rem;
}

.yes-eu-contact-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.yes-eu-contact-list li {
  display: grid;
  gap: 0.3rem;
}

.yes-eu-contact-list strong {
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yes-eu-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.yes-eu-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 0.8rem;
  border: var(--yes-border);
  background: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.yes-eu-pagination .current {
  border-color: var(--yes-teal);
  box-shadow: var(--yes-shadow-accent);
}

html.yes-eu-dark .yes-eu-pagination .page-numbers {
  background: rgba(42, 43, 45, 0.72);
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .yes-eu-header__inner,
  .yes-eu-header__actions,
  .yes-eu-section-heading,
  .yes-eu-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .yes-eu-nav {
    width: 100%;
  }

  .yes-eu-menu {
    flex-wrap: wrap;
  }

  .yes-eu-hero__grid,
  .yes-eu-split-grid,
  .yes-eu-band,
  .yes-eu-footer__grid,
  .yes-eu-card-grid,
  .yes-eu-post-grid,
  .yes-eu-contact-grid,
  .yes-eu-entry {
    grid-template-columns: 1fr;
  }

  .yes-eu-hero__visuals,
  .yes-eu-hero__shell,
  .yes-eu-home-bess,
  .yes-eu-news-feature,
  .yes-eu-editorial-block,
  .yes-eu-network,
  .yes-eu-hero-tiles {
    grid-template-columns: 1fr;
  }

  .yes-eu-hero {
    padding-bottom: 2rem;
  }

  .yes-eu-hero__visuals,
  .yes-eu-hero__panel {
    min-height: 28rem;
  }

  .yes-eu-hero__overlay {
    position: relative;
    margin-top: -8rem;
    padding-bottom: 1rem;
  }

  .yes-eu-hero__shell,
  .yes-eu-news-feature__copy {
    padding: 0 1rem;
  }

  .yes-eu-hero-tiles {
    margin-top: 0;
  }

  .yes-eu-home-bess__copy,
  .yes-eu-news-feature__copy {
    padding: 1.5rem;
  }

  .yes-eu-news-feature__media,
  .yes-eu-home-bess__media,
  .yes-eu-network__map,
  .yes-eu-editorial-block__media {
    min-height: 18rem;
  }
}
