  /* --- Reset */
  *,
  *:before,
  *:after {
      box-sizing: border-box
  }

  html {
      scroll-behavior: smooth;
      scroll-padding-top: 40px;
  }

  html,
  body {
      margin: 0;
      padding: 0
  }

  img {
      display: block;
      max-width: 100%
  }

  :root {
      --red: #E30613;
      /* brand red */
      --red-700: #b91c1c;
      --text: #000;
      /* gray-800 */
      --muted: #6b7280;
      /* gray-500/600 */
      --soft: #f3f4f6;
      /* gray-100 */
      --soft-2: #f9fafb;
      /* gray-50 */
      --beige: #FFF5E9;
      /* beige */
      --radius-xl: 100px;
      --radius-lg: 50px;
      --radius-md: 25px;
      --shadow: 0 10px 30px rgba(0, 0, 0, .06);
      --shadow-sm: 0 6px 16px rgba(0, 0, 0, .05);
      --wmark: #efeff0;
      --wrap: 1440px;
  }

  body {
      font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
      color: var(--text);
      background: #fff;
      line-height: 1.65;
      font-size: 20px;
      @media screen and (max-width: 960px) {
        font-size: 16px;
      }
  }

  h1 {
    color: var(--Wiener-Red, #E30613);
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 96px */
    letter-spacing: 1.6px;
    @media (max-width: 960px) {
        font-size: 34px;
    }
  }

  h2 {
        color: var(--red, #E30613);
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.323px;
        @media (max-width: 960px) {
            font-size: 24px;
        }
  }

  h3 {
    
    color: var(--Wiener-Red, #E30613);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; 
  }
  h4 {
    
    color: var(--Wiener-Red, #E30613);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; 
  }
  h5 {
    
    color: var(--Wiener-Red, #E30613);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 
  }
  h6 {
    
    color: var(--Wiener-Red, #E30613);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 
  }

  .wrap {
      max-width: var(--wrap);
      margin-inline: auto;
      padding-inline: 28px
  }

  .center {
      text-align: center
  }

  /* Header */
  .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 35px 20px;
      @media screen and (max-width: 960px) {
        flex-direction: column;
        gap: 30px;
      }
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit
  }

  .brand svg {
      width: 180px;
      height: 100px;
      @media screen and (max-width: 960px) {
        width: 89px;
        height: 50px;
      }
  }

  .brand-name {
      font-weight: 800;
      letter-spacing: .2px;
      color: var(--red)
  }

  .nav {
      display: flex;
      gap: 36px;
      @media screen and (max-width: 960px) {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
  }

  .nav a {
      text-decoration: none;
      color: var(--red);
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 140.5%;
      /* 28.1px */
      letter-spacing: 1.6px;
      transition: all 0.3s ease;

      @media (max-width: 960px) {
          font-size: 16px;
      }
  }

  .nav a:hover {
      color: var(--red-700)
  }

  /* Hero */
  .hero {
      padding: 0 20px;
      margin-bottom: 40px;
  }

  .hero-card {
      display: grid;
      gap: 24px;
      border-radius: var(--radius-md);
      padding: 20px;
      overflow: hidden;
      background: var(--Gradient-Beige, linear-gradient(180deg, var(--Wiener-Beige, #FFF5E9) 0%, #FFF 100%));

  }

  @media(min-width:960px) {
      .hero-card {
          grid-template-columns: 1fr 1fr;
          align-items: flex-start;
          padding: 50px 0 50px 80px;
          border-radius: var(--radius-lg);
      }
  }

  .hero-title {
    margin: 0;
    @media screen and (max-width: 960px) {
        text-align: center;
      }
  }

  .hero-photo {
      max-width: 100%;
      width: 891px;
  }


  @media(max-width:960px) {
      .hero-photo {
        aspect-ratio: auto;
        height: auto;
        border-radius: 32px;
        width: 100%;
      }
  }

  /* Sections */
  .stack {
      display: grid;
      gap: 32px
  }

  .section {
      position: relative;
      border-radius: var(--radius-xl);
      padding: 80px;
      overflow: hidden;
      margin-bottom: 40px;
      @media screen and (max-width: 960px) {
        padding: 20px;
        border-radius: var(--radius-md);
      } @media screen and (max-width: 960px) {
        padding: 20px;
        border-radius: var(--radius-md);
      }
  }

  .section.beige {
    background: var(--Gradient-Beige, linear-gradient(180deg, var(--Wiener-Beige, #FFF5E9) 0%, #FFF 100%));
    
  }

  .section.gray {
    background: var(--Gradient-Silver, linear-gradient(180deg, #EDEDED 0%, #FFF 100%));
    
  }
  .section-title {
    margin-top: 0;
    margin-bottom: 40px;
    @media screen and (max-width: 960px) {
      margin-bottom: 20px;
    }
  }

 
  .lead,
  .section-title,
  .two-col {
    z-index: 1;
    position: relative;
  }

  .lead p {
      margin: 0 0 40px
  }

  .lead strong {
      font-weight: 800
  }

  .btn {
    border-radius: 100px;
    background: var(--Wiener-Red, #E30613);
    display: inline-block;
    padding: 29px 30px;
    color: var(--Neutral-Grey-1, #F9F8F9);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140.5%; /* 22.48px */
    letter-spacing: 1.28px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    @media screen and (max-width: 960px) {
        padding: 20px;
      }
      @media(max-width:500px) {
        width: 100%;
        display: block;
        text-align: center;
    }
  }

  .btn:hover {
      background: var(--red-700);

      
  }

  .two-col {
      display: grid;
      gap: 22px;
      align-items: self-start;
  }

  @media(min-width:768px) {
      .two-col {
          grid-template-columns: 1fr 1fr
      }
  }
  @media(max-width:767px) {
    .section-about-content {
      order: 2;
    }
  }

  .media {
      border-radius: 18px;
      overflow: hidden;

      img {
        width: 100%;
        display: block;
      }
  }

  .media--16x9 {
      aspect-ratio: 16/9
  }

  .muted {
      color: var(--muted);
      font-size: .95rem
  }

  /* Watermark big W */
  .wmark:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 634px;
      height: 500px;
      max-width: 90vw;
      max-height: 90vh;
      background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjM1IiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDYzNSA1MDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0yMTYuMzA5IDQ5OS45OEMxOTUuMDY0IDQ5OS45OCAxNzUuNzc1IDQ4Ni4yMyAxNjguMjY3IDQ2NS43OEwwLjM1OTY0MiA3LjY0NTUxQy0wLjk5ODE1NSAzLjk0NjA3IDEuNjU3NTIgMCA1LjQ5MTMgMEgxMDcuMzA2QzEwOS42MDIgMCAxMTEuNjU5IDEuNDc5NzggMTEyLjQ1OCAzLjY5OTQ1TDI2NC40NTEgNDI4Ljg2OEMyNzAuMzIyIDQ0NS4zMSAyNjguMTA1IDQ2Mi45ODUgMjU4LjM4MSA0NzcuMzUxQzI0OC42MzcgNDkxLjcxNyAyMzMuMzAyIDQ5OS45NTkgMjE2LjI4OSA0OTkuOTU5IiBmaWxsPSIjZmZmIi8+CjxwYXRoIGQ9Ik00MDUuNjIyIDQ5OS45NzlDMzc2LjcyOSA0OTkuOTc5IDM1MC42MTEgNDgxLjIzNiAzNDAuNjI4IDQ1My4zMjVMMjQzLjA2NiAxODAuNDcxQzI0MS43NDggMTc2Ljc5MiAyNDQuNDA0IDE3Mi44NjcgMjQ4LjIxOCAxNzIuODY3SDM0MC45MjdDMzQzLjIyMyAxNzIuODY3IDM0NS4yOCAxNzQuMzI2IDM0Ni4wNzkgMTc2LjU0NkwzOTguMTM0IDMyMC40NzRDMzk5LjkxMSAzMjUuMzg2IDQwNi42NiAzMjUuMzg2IDQwOC40MzggMzIwLjQ3NEw1MjEuODM0IDMuNzQwNTdDNTIyLjYzMiAxLjUyMDkgNTI0LjY4OSAwLjA0MTEzNzcgNTI2Ljk4NSAwLjA0MTEzNzdINjI4LjhDNjMyLjYzNCAwLjA0MTEzNzcgNjM1LjI5IDMuOTg3MjEgNjMzLjkzMiA3LjY4NjY1TDQ3MC4zOTcgNDUzLjg4QzQ2MC4yOTMgNDgxLjQ2MiA0MzQuMjM2IDUwMCA0MDUuNjAyIDUwMCIgZmlsbD0iI2ZmZiIvPgo8L3N2Zz4K');
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      transform: translate(-50%, -50%);
      pointer-events: none;
      user-select: none;
      z-index: 0;
  }

  @media(max-width:1200px) {
      .wmark:before {
          width: 500px;
          height: 395px;
      }
  }

  @media(max-width:960px) {
      .wmark:before {
          width: 380px;
          height: 300px;
      }
  }

  @media(max-width:768px) {
      .wmark:before {
          width: 280px;
          height: 221px;
      }
  }

  @media(max-width:480px) {
      .wmark:before {
          width: 220px;
          height: 173px;
      }
  }
  

  /* Cards / bullets */
  .card-grid {
      display: grid;
      gap: 20px;
      margin-top: 40px;
  }

  @media(min-width:960px) {
      .card-grid {
          grid-template-columns: repeat(3, 1fr)
      }
  }

  /* Swiper styles */
  .card-grid-container {
      margin-top: 40px;
  }

  .card-grid-swiper {
      overflow: visible;
  }

  .swiper-slide {
      height: auto;
  }


  .card {
      position: relative;
      border-radius: var(--radius-lg);
      background: var(--Gradient-Silver, linear-gradient(180deg, #EDEDED 0%, #FFF 100%));
      padding: 40px;
      .jobs & {
        background: var(--Gradient-Beige, linear-gradient(180deg, var(--Wiener-Beige, #FFF5E9) 0%, #FFF 100%));

      }
  }


  .card h4 {
    color: var(--Wiener-Red, #E30613);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
    margin: 0;
  }

  .card p {
    color: var(--Grays-Black, var(--Grays-Black, #000));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
  }

  /* Jobs strip (4 items) */

  .jobs .card-grid {
      grid-template-columns: repeat(4, 1fr)
  }

  @media(max-width:1100px) {
      .jobs .card-grid {
          grid-template-columns: 1fr 1fr
      }
  }

  @media(max-width:640px) {
      .jobs .card-grid {
          grid-template-columns: 1fr
      }
  }

  .jobs .swiper-wrapper {
      justify-content: flex-start;
  }
  
  .jobs .swiper-wrapper.center-slides {
      justify-content: center !important;
  }
  

  
  @media (max-width: 768px) {
      .jobs .center-slides .swiper-slide {
          max-width: 100%;
      }
  }



  .job .link {
    color: var(--Wiener-Red, #E30613);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140.5%; /* 22.48px */
    letter-spacing: 1.28px;
    text-decoration: underline;

  }

  /* Swiper pagination styles */
  .swiper-pagination {
      position: static !important;
      display: flex;
      gap: 20px;
      justify-content: center;
      margin: 14px 0 6px;
  }

  .swiper-pagination-bullet {
      width: 15px !important;
      height: 15px !important;
      border-radius: 999px !important;
      background: #D9D9D9;
      margin: 0 !important;
  }

  .swiper-pagination-bullet-active {
      background: var(--red) !important;
  }


  /* Footer */
  .footer {
      background: var(--beige);
      padding: 80px;
      margin-top: 40px;
      border-radius: var(--radius-xl);
      background: var(--Gradient-Beige, linear-gradient(180deg, var(--Wiener-Beige, #FFF5E9) 0%, #FFF 100%));
      @media screen and (max-width: 960px) {
        padding: 20px;
        border-radius: var(--radius-md);
      }
  }

  .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      text-align: center;
  }

  .footer-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .footer-links a {
    color: var(--red);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0.5px;
    text-decoration: underline;
    transition: all 0.3s ease;
  }

  .footer-links a:hover {
    color: var(--red-700);
  }

  .footer-copyright {
    color: var(--Grays-Black, var(--Grays-Black, #000));
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 225% */
    letter-spacing: 0.5px;
  }

  .text-center {
    text-align: center;
  }