/* ========== SECTIONS & CARDS ========== */
.section {
  padding: 48px 0;
}
.section--light {
  background: var(--neutral-300);
}
.section--cream {
  background: var(--neutral-300);
}

.grid {
  display: grid;
  gap: var(--gap);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
  padding: 24px;
}

.block {
  padding: 28px;
  border-radius: 24px;
}
.block--rebarbora {
  background: var(--rebarbora-300);
}
.block--cuketa {
  background: var(--cuketa-300);
}
.block--paprika {
  background: var(--paprika-300);
}
.block--neutral {
  background: var(--neutral-600);
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  background: var(--baklazan-900);
  color: #fff;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--baklazan-900);
  color: var(--baklazan-900);
}

.plans {
  --plans-gutter: clamp(10px, 9.86vw, 142px);
  margin-bottom: 128px;
}
.plans .container {
  max-width: 1440px;
}
.plans__titlewrap {
  padding-top: 50px;
  padding-bottom: 50px;
}
.plans__title {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--baklazan-900);
  margin: 0;
}
.plans__stack {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.plan {
  display: grid;
  grid-template-columns: 1fr 360px;
  max-width: 1155px;
  height: 400px;
  padding: 32px;
  border-radius: 0 0 var(--radius) var(--radius);
  position: relative;
  overflow: hidden;
  background: var(--neutral-300);
}
.plan--rebarbora {
  background: #f6cfc9;
}
.plan--cuketa {
  background: #fff2bb;
}
.plan--paprika {
  background: var(--paprika-300);
  color: #0d2b10;
}
.plan--paprika .plan__heading {
  color: #0d2b10;
}
.plan--paprika .plan__desc {
  color: #0d2b10;
}
.plan--baklazan {
  background: var(--baklazan-300);
}

.plan__left {
  display: flex;
  flex-direction: column;
  max-width: 50%;
  height: 100%;
}
.plan__heading {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  color: var(--baklazan-900);
  margin: 0 0 12px;
}
.plan__desc {
  font-family: "Rubik", system-ui, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.plan__spacer {
  margin-top: 32px;
  flex-grow: 1;
}
.plan__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--baklazan-900);
  color: #fff;
}

.plan__right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 32px;
}
.plan__note {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink);
  text-align: right;
  margin: 0;
}
.plan__art {
  position: absolute;
  right: 32px;
  bottom: 24px;
  width: clamp(160px, 22vw, 300px);
  height: clamp(120px, 16vw, 220px);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
}
.plan__art--eggplant {
  background-image: url("/assets/public/img/ill-eggplant.svg");
}
.plan__art--pear {
  background-image: url("/assets/public/img/ill-pear.svg");
}
.plan__art--mix {
  background-image: url("/assets/public/img/ill-mix.svg");
}
.plan__art--berry {
  background-image: url("/assets/public/img/ill-berry.svg");
}

@media (max-width: 1024px) {
  .plan {
    grid-template-columns: 1fr 300px;
  }
}
@media (max-width: 768px) {
  .plans__title {
    font-size: 40px;
  }
  .plan {
    grid-template-columns: 1fr;
    height: auto;
  }
  .plan__right {
    align-items: flex-start;
    padding-right: 0;
  }
  .plan__note {
    text-align: left;
  }
  .plan__art {
    right: 24px;
    bottom: 16px;
    width: clamp(140px, 42vw, 260px);
    height: clamp(100px, 30vw, 180px);
  }
}
.farm .farm__inner {
  max-width: 944px;
  margin: 0 auto;
}

.farm .farm__title {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--baklazan-900);
  margin: 0 0 16px;
}

.farm .farm__lead {
  font-size: 22px;
  line-height: 1.45;
  margin: 40px 0 16px;
  color: var(--ink);
}

.farm .farm__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.farm .farm__image img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.farm .farm__btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--baklazan-900);
  color: #fff;
  text-align: center;
}

.farm .farm__caption {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  opacity: 0.5;
}
.chef {
  margin-top: 90px;
}

.chef .chef__inner {
  max-width: 920px;
  margin: 0 auto;
}
.chef .chef__block {
  margin-bottom: 80px;
}
.chef .chef__label {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
}
.chef .chef__h1 {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  margin: 32px 0 40px;
  color: var(--baklazan-900);
}

.chef .chef__video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 32px;
  display: block;
}
.chef .chef__video img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}
.chef .chef__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}
.chef .chef__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-left: 16px solid var(--baklazan-900);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.chef .chef__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.chef .chef__cta {
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--rebarbora-300);
  color: var(--baklazan-900);
}
.chef .btn--dark {
  background: var(--baklazan-900);
  color: #fff;
}

.chef .chef__lead {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.25;
  margin: 120px 0 24px;
  color: var(--ink);
}
.chef .chef__h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 80px;
  color: var(--baklazan-900);
}
.chef .chef__sub {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--baklazan-900);
}

@media (max-width: 768px) {
  .chef .chef__h1,
  .chef .chef__h2 {
    font-size: 38px;
  }
  .chef .chef__lead {
    font-size: 24px;
  }
  .chef .chef__label {
    font-size: 24px;
  }
  .chef .chef__video img {
    height: 300px;
  }
}
.cta-banner {
  background: #fcc7bd;
  border-radius: 0 0 60px 60px;
  padding: 24px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.cta-banner__text {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  color: var(--baklazan-900);
  margin: 0;
}

.cta-banner__btn {
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--baklazan-900);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

@media (max-width: 640px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    border-radius: 0 0 40px 40px;
  }
}
.kelu {
  text-align: center;
}

.kelu__title {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--baklazan-900);
  margin: 0 0 24px;
    text-align: center;
}

.kelu__card {
  background: #9dc675;
  border-radius: 24px;
  max-width: 564px;
  margin: 0 auto;
  padding: 16px 16px 20px;
}

.kelu__text {
  font-size: 23px;
  line-height: 1.35;
  color: #2a402c;
  margin: 0 0 14px;
  text-align: left;
}

.kelu__video {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.kelu__video img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.kelu__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}
.kelu__play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-left: 14px solid var(--baklazan-900);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.kelu__basket {
  position: relative;
  margin: 60px auto 0;
  width: 495px;
}
.kelu__basket-svg {
  width: 100%;
  display: block;
}
.basket__content {
  position: absolute;
  top: 192px;
  left: 32px;
  right: 32px;
  text-align: center;
}
.basket__text {
  text-align: left;
  font-size: 18px;
  line-height: 1.1;
  color: #20402a;
  margin: 0 0 75px;
}
.basket__btn {
  font-size: 20px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1d3321;
  color: #fff;
}

@media (max-width: 768px) {
  .kelu__title {
    font-size: 40px;
  }
  .kelu__basket {
    width: 100%;
    max-width: 495px;
  }
}
.cityfarm__title {
  margin-top: 48px;
  margin-bottom: 86px;
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.1;
  color: var(--baklazan-900);
}
.cityfarm__img {
  display: block;
  max-width: 684px;
  width: 100%;
  height: auto;
  margin: 64px auto 200px;
  border-radius: 32px;
}
.cityfarm__body {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.cityfarm__body p {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 63px;
}

.cityfarm__cta-wrap {
  width: 100%;
  text-align: center;
}
.cityfarm {
  margin-bottom: -150px;
}

.cityfarm__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--paradajka-300);
  color: #fff;
  margin-bottom: 0px;
}
/* ========== KONTAKT PAGE ========== */

.contact {
  background: var(--neutral-300);
  padding: 80px 0;
  margin-bottom: -100px;
}

.contact .contact__inner {
  margin: 0 auto;
  text-align: center;
  max-width: 687px;
}

.contact .contact__logo {
  display: block;
  margin: 102px auto 35px;
  width: 240px;
  max-width: 100%;
}

.contact .contact__subtitle {
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1.3;
  margin-bottom: 118px;
  color: var(--baklazan-900);
}

.contact .contact__heading {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.3;
  margin: 0 0 64px;
  color: var(--baklazan-900);
  text-align: left;
}

.contact .contact__figure {
  margin: 0;
}

.contact .contact__image {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.contact .contact__gps {
  display: block;
  margin-top: 24px;
  margin-bottom: 86px;
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 20px;
  color: var(--baklazan-900);
  text-decoration: underline;
  text-align: right;
  cursor: pointer;
}

.contact .contact__gps:hover {
  opacity: 0.85;
}

.contact .contact__grid {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 40px;
  text-align: left;
  align-items: start;
}

.contact .contact__col {
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
}

.contact .contact__group-title {
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 22px;
}

.contact .contact__text {
  margin: 0 0 20px;
}

.contact .contact__text a {
  color: var(--baklazan-900);
  text-decoration: none;
}

.contact .contact__text a:hover {
  text-decoration: underline;
}

.contact .contact__social {
  margin-top: 40px;
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Rubik", system-ui, sans-serif;
  font-size: 18px;
}

.contact .contact__social a {
  color: var(--baklazan-900);
  text-decoration: underline;
}

.contact .contact__social a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact .contact__logo {
    margin: 100px auto 24px;
    width: 180px;
  }
  .contact .contact__subtitle {
    margin-bottom: 64px;
    font-size: 22px;
  }
  .contact .contact__heading {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .contact .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.cityfarm__cta {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cityfarm__cta:hover,
.hero__cta:hover,
.hero__cta:focus-visible,
.cityfarm__cta:focus-visible {
  background: var(--paradajka-600) !important;
}

.hero .pill--white {
  transition: background-color 0.2s ease, color 0.2s ease;
}
.hero .pill--white:hover,
.hero .pill--white:focus-visible {
  background: #eae3eb;
}

.btn {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn:not(.cityfarm__cta):not(.basket__btn):hover,
.btn:not(.cityfarm__cta):not(.basket__btn):focus-visible,
.cta-banner__btn:hover,
.cta-banner__btn:focus-visible {
  background: var(--baklazan-600);
}

.basket__btn:hover,
.basket__btn:focus-visible {
  background: #cee3ba;
}

.contact .btn {
  display: inline-flex;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--baklazan-900);
  color: #fff;
  font: 600 16px/1 "Rubik", sans-serif;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-left: auto;
}

.contact .btn:hover,
.contact .btn:focus-visible {
  background: var(--baklazan-600);
}

.contact .btn:active {
  transform: translateY(1px);
}
.contact__text a:hover {
  color: var(--baklazan-600);
}
.contact__social a:hover {
  color: var(--baklazan-600);
}
.contact .btn {
  display: inline-flex;
  margin-left: auto;
  margin-right: 0;
}

.contact__inner {
  display: flex;
  flex-direction: column;
}

.contact__gps {
  align-self: flex-end;
}

@media (min-width: 770px) and (max-width: 901px) {
  .plan__left {
    max-width: 80%;
  }
}

@media (max-width: 769px) {
  .plans .container {
    padding-left: 17px;
    padding-right: 17px;
  }

  .plans__title {
    margin-bottom: 40px;
  }

  .plans__titlewrap {
    padding-top: 32px;
    padding-bottom: 0px;
  }
  .plans__title {
    font-size: 32px;
    line-height: 1.15;
    margin: 0 0 40px;
  }

  .plans__stack {
    gap: 30px;
  }

  .plan {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 24px 21px;
    border-radius: 0 0 24px 24px;
  }
  .plan__left {
    display: contents;
  }
  .plan__spacer {
    display: none;
  }

  .plan__heading {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 32px;
  }
  .plan__desc {
    font-size: 16px;
    line-height: 1.45;
    margin: 0 0 26px;
  }
  .plan__right {
    order: 3;
    padding-right: 0;
    align-items: flex-start;
  }
  .plan__note {
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
    margin: 0 0 26px;
  }

  .plan__btn {
    width: 100%;
    order: 4;
    align-self: flex-start;
    height: 57px;
    line-height: 57px;
    padding: 0 22px;
    font-size: 14px;
    margin: 0;
  }

  .plan__art {
    display: none !important;
  }
}

@media (min-width: 770px) and (max-width: 901px) {
  .farm .container {
    padding: 0 23px;
  }

  .farm .farm__title {
    font-size: 40px;
    margin: 0 0 24px;
  }

  .farm .farm__lead {
    font-size: 18px;
    line-height: 1.45;
    margin: 12px 0 16px;
  }

  .farm .farm__image img {
    height: 420px;
  }

  .farm .farm__btn {
    height: 57px;
    line-height: 57px;
    padding: 0 22px;
    font-size: 16px;
  }
}

@media (max-width: 769px) {
  .farm .container {
    padding: 0 23px !important;
  }
  .farm {
    padding: 32px 0 23px !important;
  }

  .farm .farm__title {
    font-size: 32px;
    margin: 0 0 32px;
  }

  .farm .farm__lead {
    font-size: 16px;
    line-height: 1.45;
    margin: 0 0 12px;
  }

  .farm .farm__image {
    border-radius: 16px;
    overflow: hidden;
  }
  .farm .farm__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .farm .farm__btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 57px;
    line-height: 57px;
    padding: 0 22px;
    font-size: 16px;
    border-radius: 999px;
    width: 240px;
  }

  .farm .farm__caption {
    font-size: 14px;
    line-height: 1.4;
    margin: 8px 0 0;
  }
}

@media (min-width: 770px) and (max-width: 901px) {
  .chef .container {
    padding: 0 24px;
  }

  .chef .chef__h1,
  .chef .chef__h2 {
    font-size: 40px;
  }

  .chef .chef__video img {
    height: 360px;
  }

  .cta-banner {
    padding: 20px 28px;
  }

  .cta-banner__text {
    font-size: 16px;
  }
  .cta-banner__btn {
    height: 57px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    max-width: 241px;
    white-space: normal;
    text-align: center;
    font-size: 16px;
  }
}

@media (max-width: 769px) {
  .chef .container {
    padding: 0 17px;
  }

  .chef {
    margin-top: 32px;
  }

  .chef .chef__label {
    font-size: 16px;
    margin: 0 0 15px;
  }

  .chef .chef__h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 15px;
  }

  .chef .chef__video {
    margin: 0 0 15px;
  }
  .chef .chef__video img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

  .cta-banner {
    padding: 16px;
    gap: 12px;
    border-radius: 0 0 40px 40px;
    text-align: center;
    justify-content: center;
  }
  .cta-banner__text {
    font-size: 14px;
    margin: 0;
  }
  .cta-banner__btn {
    height: 57px;
    line-height: 1.2;
    font-size: 16px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 241px;
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .chef .chef__block > .cta-banner + .chef__block,
  .chef .chef__lead {
    margin-top: 80px;
  }
  .chef .chef__block {
    margin-bottom: 0px;
  }

  .chef .chef__h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 24px;
  }

  .chef .chef__sub {
    font-size: 20px;
    margin: 0 0 12px;
  }
}

.kelu {
  text-align: left;
}
.kelu__title {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--baklazan-900);
}

.kelu__card {
  padding: 20px;
}

.kelu__text {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 19px;
}

.kelu__basket {
  margin-top: 80px;
}

.basket__text {
  font-size: 16px;
  line-height: 1.35;
}

.basket__btn {
  background: var(--baklazan-900) !important;
  font-size: 16px;
  height: 57px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  border-radius: 999px;
}
.basket__btn:hover,
.basket__btn:focus-visible {
  background: var(--baklazan-600) !important;
}

@media (max-width: 901px) {
  .kelu .container {
    padding: 0 17px;
  }
}
@media (max-width: 500px) {
  .basket__text {
    margin-bottom: 50px;
    font-weight: 400;
  }
  .basket__btn {
    font-weight: 400 !important;
  }
}
@media (max-width: 486px) {
  .basket__text {
    margin-top: -40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 446px) {
  .basket__text {
    margin-top: -54px;
    margin-bottom: 24px;
    line-height: 1.1;
  }
}
@media (max-width: 401px) {
  .basket__text {
    margin-top: -70px;
    margin-bottom: 14px;
  }
}
@media (max-width: 374px) {
  .basket__text {
    margin-top: -80px;
    margin-bottom: 10px;
    line-height: 1.05;
  }
}
@media (max-width: 374px) {
  .basket__text {
    font-size: 14px;
  }
}

@media (max-width: 769px) {
  .cityfarm .container {
    padding: 0 17px;
  }

  .cityfarm__title {
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    margin: -20px 0 25px;
  }

  .cityfarm__body {
    max-width: 100%;
    text-align: center;
  }

  .cityfarm__body p {
    font-family: "Rubik", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 25px;
  }

  .cityfarm__cta {
    height: 57px;
    font-size: 16px;
    padding: 0 22px;
  }

  .cityfarm__cta-wrap {
    margin-bottom: 36px;
  }

  .cityfarm__img {
    max-width: 275px;
    width: 100%;
    margin: 0 auto 84px;
    border-radius: 16px;
  }
}
.plan__btn,
.farm__btn,
.cta-banner__btn,
.cta-contact__gps,
.cta-banner__btn,
.cityfarm__cta {
  font-weight: 400 !important;
}
.contact .btn {
  font-weight: 400;
  min-width: 240px;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact {
    padding: 64px 7px 0;
  }

  .contact .contact__logo {
    margin: 0 auto 24px;
    width: 180px;
  }

  .contact .contact__subtitle {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 400;
    margin-bottom: 59px;
  }

  .contact .contact__heading {
    font-family: Georgia, serif;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 32px;
    text-align: left;
  }

  .contact .contact__image {
    width: 100%;
    border-radius: 16px;
  }

  .contact__grid {
    gap: 24px;
  }

  .contact .btn {
    font-weight: 400;
    margin-bottom: 48px;
    min-width: 240px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .contact .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact .contact__col {
    font-size: 22px;
    line-height: 1.45;
  }

  .contact .contact__group-title {
    margin-bottom: 8px;
  }

  .contact .contact__col:nth-child(2) {
    margin-top: 24px; /* odstęp między Fakturačné a Predplatné */
  }

  .contact .contact__social {
    font-size: 20px;
    margin-top: auto;
    margin-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ================= TABLET ================= */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact {
    padding: 80px 32px;
  }

  .contact .contact__subtitle {
    font-size: 24px;
    margin-bottom: 72px;
    font-weight: 400;
    text-align: center;
  }

  .contact .contact__heading {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 48px;
    text-align: center;
  }

  .contact .btn {
    font-weight: 400;
    display: flex;
    justify-content: center;
  }

  .contact .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact .contact__col {
    font-size: 20px;
  }

  .contact .contact__social {
    font-size: 18px;
    margin-top: 48px;
    margin-bottom: 150px;
  }
  .contact .contact__social {
    font-size: 18px;
    margin-top: 48px;
    margin-bottom: 150px;
  }
}

.contact__social--mobile {
  display: none !important;
}

.contact__social--desktop {
  display: flex !important;
}

@media (max-width: 768px) {
  .contact__social--desktop {
    display: none !important;
  }

  .contact__social--mobile {
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-size: 20px;
    margin-top: auto;
    margin-bottom: 150px;
  }
}
