*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    background-color: #263270;
    /*border-bottom: 1px solid #eaeaea;*/
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.site-header.is-visible {
    transform: translateY(0);
}
  
.site-header .container {
    width: 100%;
    padding-inline: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 120px;
}

@media (max-width: 768px) {

    .site-header .container {
      padding-inline: 20px;
    }
  
}

/* =========================
    HEADER LOGO
========================= */

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    width: 192px;
    height: auto;
}

/* =========================
   HERO
========================= */

.hero {
    width: 100%;
    /*min-height: 700px;*/
  
    background-image: url("../img/caribeton-pork-caribbean-sea-hero-desktop.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero__content {
    min-height: 700px;
    padding: 120px 80px 80px;
  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  @media (max-width: 768px) {

    .hero {
      min-height: 100vh;
  
      background-image: url("../img/caribeton-pork-caribbean-sea-hero-mobile.webp");
      background-position: center center;
    }

    .hero__content {
        padding: 120px 16px 80px;
    }
  
  }
  
  .hero__intro {
    max-width: 620px;
  }
  
  .hero__logo {
    width: 560px;
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .hero__tagline {
    margin: 40px 0 0;
  
    font-family: "Barlow", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
  
    color: #263270;
  }
  
/* =========================
   STORY
========================= */

.story {
    width: 100%;
    min-height: 450px;
  
    background-color: #43C4DF;
  
    padding: 40px 190px 80px 189px;
  }

  .story__content {
    max-width: 1240px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
  
    align-items: center;
  }

  @media (max-width: 1024px) {

    .story {
        padding: 10px 60px 80px 60px;
        
    }
    .story__content {
        grid-template-columns: 1fr;
    }
  
  }

  @media (max-width: 768px) {

    .story {
        padding: 10px 16px 80px 16px;
    }
    .story__content {
        grid-template-columns: 1fr;
    }
  }
  
  .story__title h2 {
    margin: 0;
  
    font-family: "Barlow", sans-serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
  
    color: #232426;
  }
  
  .story__text {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
  
    color: #232426;
  }
  
  .story__text p {
    margin: 0 0 32px;
  }
  
  .story__text p:last-child {
    margin-bottom: 0;
  }

  /* =========================
   FEATURES
========================= */

.features__mobile {
    display: none;
}

.features {
    width: 100%;
  
    padding: 80px 80px 90px;
    background-image: url("../img/background-gradient-desktop.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
  
  .features__content {
    max-width: 1240px;
    margin-inline: auto;
  }
  
  .features__title {
    margin: 0 0 44px;
  
    font-family: "Barlow", sans-serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 500;
  
    color: #222222;
  }
  
  .features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
  }
  
  .feature-card {
    overflow: hidden;
  
    background-color: #ffffff;
    border-radius: 8px;
  
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
  }
  
  .feature-card img {
    width: 100%;
    height: 240px;
  
    display: block;
    object-fit: cover;
  }
  
  .feature-card__body {
    padding: 24px 34px 32px;
  }
  
  .feature-card__body h3 {
    margin: 0 0 20px;
  
    font-family: "Barlow", sans-serif;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
  
    color: #222222;
  }
  
  .feature-card__body p {
    margin: 0;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
  
    color: #222222;
  }

  /* =========================
   FEATURES MOBILE
========================= */

@media (max-width: 768px) {
    .features {
      padding: 56px 24px;
      background-image: url("../img/background-gradient-mobile.webp");
      background-size: cover;
      background-position: center;
    }
  
    .features__desktop {
      display: none;
    }
  
    .features__mobile {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
  
    .feature-accordion {
      overflow: hidden;
  
      background-color: #ffffff;
      border-radius: 8px;
  
      box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
    }
  
    .feature-accordion summary {
      position: relative;
  
      padding: 28px 72px 28px 28px;
  
      font-family: "Barlow", sans-serif;
      font-size: 30px;
      line-height: 1.15;
      font-weight: 500;
  
      color: #222222;
  
      cursor: pointer;
      list-style: none;
    }
  
    .feature-accordion summary::-webkit-details-marker {
      display: none;
    }
  
    .feature-accordion summary::after {
      content: "";
  
      position: absolute;
      right: 30px;
      top: 50%;
  
      width: 16px;
      height: 16px;
  
      border-right: 4px solid #263270;
      border-bottom: 4px solid #263270;
  
      transform: translateY(-60%) rotate(45deg);
      transition: transform 0.2s ease;
    }
  
    .feature-accordion[open] summary::after {
      transform: translateY(-35%) rotate(225deg);
    }
  
    .feature-accordion img {
      width: calc(100% - 56px);
      height: 220px;
  
      margin: 0 28px 24px;
  
      display: block;
      object-fit: cover;
  
      border-radius: 6px;
    }
  
    .feature-accordion p {
      margin: 0;
      padding: 0 28px 32px;
  
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 18px;
      line-height: 1.7;
      font-weight: 400;
  
      color: #222222;
    }
  }

 /* =========================
   PRODUCTS
========================= */

.products {
    width: 100%;
    padding: 80px 80px 90px;
  
    background-color: #ffffff;
  }
  
  .products__content {
    max-width: 1240px;
    margin-inline: auto;
  }
  
  .products__title {
    margin: 0 0 32px;
  
    font-family: "Barlow", sans-serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 500;
  
    color: #232426;
  }
  
  /* =========================
     SWIPER
  ========================= */
  
  .products__swiper {
    width: 100%;
  }
  
  .product-slide img {
    width: 100%;
    height: 640px;
  
    object-fit: cover;
    border-radius: 8px;
  }
  
  .product-slide h3 {
    margin: 24px 0 32px;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
  
    color: #232426;
  }
  
  /* =========================
     PAGINATION
  ========================= */
  
  .products__pagination {
    position: static;
    margin-top: 28px;
  
    display: flex;
    justify-content: center;
    gap: 18px;
  }
  
  .products__pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  
    margin: 0 !important;
  
    background-color: #d8f4fa;
    opacity: 1;
  }
  
  .products__pagination .swiper-pagination-bullet-active {
    background-color: #43C4DF;
  }
  
  /* =========================
     PRODUCTS MOBILE
  ========================= */
  
  @media (max-width: 768px) {
  
    .products {
      padding: 56px 24px;
    }
  
    .products__title {
      font-size: 40px;
    }
  
    .product-slide img {
      height: auto;
    }
  
    .product-slide h3 {
      font-size: 22px;
    }
  
    .products__pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
    }
  
  }

  /* =========================
   DISHES
========================= */

.dishes {
    width: 100%;
    padding: 80px 80px 90px;
  
    background-color: #ffffff;
  }
  
  .dishes__content {
    max-width: 1240px;
    margin-inline: auto;
  }
  
  .dishes__title {
    margin: 0 0 32px;
  
    font-family: "Barlow", sans-serif;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 500;
  
    color: var(--color-dark);
  }
  
  .dishes__text {
    margin: 0 0 56px;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
  
    color: var(--color-dark);
  }
  
  .dishes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
  }
  
  .dishes__grid img {
    width: 100%;
    height: 240px;
  
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* =========================
     DISHES MOBILE
  ========================= */
  
  @media (max-width: 768px) {
    .dishes {
      padding: 56px 24px;
    }
  
    .dishes__title {
      font-size: 40px;
    }
  
    .dishes__text {
      margin-bottom: 36px;
  
      font-size: 18px;
      line-height: 1.6;
    }
  
    .dishes__grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .dishes__grid img {
      height: auto;
    }
  }

  /* =========================
   FOOTER
========================= */

.site-footer {
    width: 100%;
  
    padding: 56px 24px;
  
    background-color: #D9F3F9;
  }
  
  .site-footer__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
  
    max-width: 1240px;
    margin-inline: auto;
  }
  
  .site-footer__links {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .site-footer__links a {
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
  
    color: #111111;
  
    text-decoration: none;
  }
  
  .site-footer__links span {
    font-size: 16px;
    color: #43C4DF;
  }
  
  .site-footer__divider {
    width: 1px;
    height: 42px;
  
    background-color: #263270;
  }
  
  .site-footer__copyright {
    margin: 0;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
  
    color: #232426;
  }
  
  /* =========================
     FOOTER MOBILE
  ========================= */
  
  @media (max-width: 768px) {
  
    .site-footer {
      padding: 48px 24px;
    }
  
    .site-footer__content {
      flex-direction: column;
      gap: 24px;
    }
  
    .site-footer__links {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .site-footer__links a {
      font-size: 20px;
    }
  
    .site-footer__divider {
      width: 320px;
      height: 1px;
    }
  
    .site-footer__copyright {
      text-align: center;
    }
  
  }

  /* =========================
   QUALITY BLOCK
========================= */

.quality-block {
    background: #263270;
    padding: 110px 20px;
    color: #fff;
  }
  
  .quality-content {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 440px;
    align-items: center;
    gap: 90px;
  }
  
  .quality-text h2 {
    font-family: "Barlow", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 500;
    margin: 0 0 32px;
  }
  
  .quality-text p {
    font-family: "Plus Jakarta Sans", sans-serif;
    max-width: 460px;
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
  }
  
  .quality-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  
  .logo-card {
    width: 205px;
    height: 205px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  }
  
  .logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  
  @media (max-width: 991px) {
    .quality-content {
      grid-template-columns: 1fr;
      gap: 50px;
    }
  
    .quality-logos {
      max-width: 440px;
    }
  }
  
  @media (max-width: 575px) {
    .quality-block {
      padding: 70px 20px;
    }
  
    .quality-text h2 {
      font-size: 44px;
    }
  
    .quality-text p {
      font-size: 20px;
    }
  
    .quality-logos {
      gap: 20px;
    }
  
    .logo-card {
      width: 100%;
      height: 160px;
      padding: 22px;
    }
  }

  /* =========================
   NATURE BLOCK
========================= */

.nature-block {
    background: #f5f5f5;
    padding: 80px 80px 90px;
  }
  
  .nature-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
  }
  
  .nature-content h2 {
    max-width: 650px;
    font-family: "Barlow", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 500;
    color: #232426;
    margin: 0 0 40px;
  }
  
  .nature-content p {
    max-width: 720px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #232426;
    margin: 0;
  }
  
  .nature-content p strong {
    font-weight: 700;
  }
  
  .nature-image {
    border-radius: 10px;
    overflow: hidden;
  }
  
  .nature-image img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  
  @media (max-width: 991px) {
    .nature-container {
      grid-template-columns: 1fr;
      gap: 60px;
    }
  
    .nature-content h2 {
      font-size: 44px;
    }
  
    .nature-content p {
      font-size: 20px;
    }
  }
  
  @media (max-width: 575px) {
    .nature-block {
      padding: 70px 20px;
    }
  
    .nature-content h2 {
      font-size: 44px;
      margin-bottom: 28px;
    }
  
    .nature-content p {
      font-size: 20px;
      line-height: 1.6;
    }
  }

  /* =========================
   CONTACT
========================= */

.contact {
    width: 100%;
    padding: 80px 80px 90px;
  
    background-image: url("../img/background-gradient-desktop.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .contact__content {
    max-width: 1240px;
    margin-inline: auto;
  
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 120px;
    align-items: end;
  }
  
  .contact__form {
    width: 100%;
  }
  
  .contact__title {
    margin: 0 0 48px;
  
    font-family: "Barlow", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 500;
  
    color: #232426;
  }
  
  .contact__form label {
    display: block;
    margin: 0 0 14px;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
  
    color: #232426;
  }
  
  .contact__form input,
  .contact__form textarea {
    width: 100%;
  
    margin: 0 0 44px;
    padding: 18px 20px;
  
    border: 0;
    border-radius: 8px;
  
    background-color: #ffffff;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
  
    color: #222222;
  }
  
  .contact__form textarea {
    min-height: 180px;
    resize: vertical;
  }
  
  .contact__form input::placeholder,
  .contact__form textarea::placeholder {
    color: #777777;
  }
  
  .contact__form button {
    width: 320px;
    min-height: 64px;
  
    margin-left: auto;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border: 0;
    border-radius: 100px;
  
    background-color: #43C4DF;
    color: #ffffff;
  
    font-family:"Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 800;
  
    cursor: pointer;
  }
  
  .contact__info {
    color: #ffffff;
  }
  
  .contact__logo {
    width: 300px;
    margin-bottom: 28px;
  }
  
  .contact__info p {
    margin: 0;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.8;
    font-weight: 400;
    text-align: justify;

  
    color: #ffffff;
  }
  
  /* =========================
     CONTACT MOBILE
  ========================= */
  
  @media (max-width: 768px) {
  
    .contact {
        padding: 56px 24px;
        background-image: url("../img/background-gradient-mobile.webp");
        background-size: cover;
        background-position: center;
    }
  
    .contact__content {
      grid-template-columns: 1fr;
      gap: 56px;
    }
  
    .contact__title {
      margin-bottom: 36px;
      font-size: 44px;
    }
  
    .contact__form label {
      font-size: 20px;
    }
  
    .contact__form input,
    .contact__form textarea {
      margin-bottom: 32px;
      font-size: 12px;
    }
  
    .contact__form button {
      width: 100%;
    }
  
    .contact__info {
      text-align: center;
    }
  
    .contact__logo {
      width: 260px;
      margin-inline: auto;
    }
  
  }