@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

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

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

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

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/subset-Fraunces72pt-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/subset-Urbanist-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/subset-Fraunces72pt-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/subset-Urbanist-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/subset-Urbanist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Urbanist", sans-serif;
  background-color: #fdfaf5;
  color: #1a1a1a;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 90, 39, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}
@media (min-width: 768px) {
  .header__wrapper {
    height: 90px;
  }
}
.header__logo {
  z-index: 1001;
}
.header__logo-img {
  height: 50px;
  width: auto;
}
@media (min-width: 768px) {
  .header__logo-img {
    height: 70px;
  }
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  width: 100%;
  height: 2px;
  background-color: #2d5a27;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}
.header__burger.active .header__burger-line {
  background-color: #f4b41a;
}
.header__burger.active .header__burger-line:nth-child(1) {
  transform: rotate(45deg);
}
.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg);
}
.header__decoration--shape-1 {
  position: absolute;
  bottom: -10px;
  right: 10%;
  width: 100px;
  height: 5px;
  background: #f4b41a;
  border-radius: 10px;
  opacity: 0.3;
  filter: blur(5px);
}

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #2d5a27;
  padding: 100px 40px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
.nav.active {
  right: 0;
}
@media (min-width: 1024px) {
  .nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
  }
}
.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .nav__list {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .nav__list {
    gap: 35px;
  }
}
.nav__link {
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  font-family: "Fraunces", serif;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f4b41a;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover {
  color: #f4b41a;
}
.nav__link:hover:after {
  width: 100%;
}
@media (min-width: 1024px) {
  .nav__link {
    color: #2d5a27;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Urbanist", sans-serif;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header {
  animation: slideIn 0.8s ease-out;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background-color: #2d5a27;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: transparent;
  border-color: #2d5a27;
  color: #2d5a27;
  transform: translateY(-3px);
}
.btn--secondary {
  background-color: #f4b41a;
  color: #1a1a1a;
}
.btn--secondary:hover {
  background-color: transparent;
  border-color: #f4b41a;
  transform: translateY(-3px);
}

.title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2d5a27;
}
@media (min-width: 360px) {
  .title {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .title {
    font-size: 48px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(253, 250, 245, 0.9) 0%, rgba(253, 250, 245, 0.4) 100%);
}
.hero__decoration--glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(244, 180, 26, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero__subtitle {
  display: block;
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2d5a27;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 14px;
}
.hero__subtitle::before {
  content: "🌱";
  margin-right: 10px;
}
.hero__title {
  font-family: "Fraunces", serif;
  color: #2d5a27;
  line-height: 1.1;
  margin-bottom: 30px;
}
@media (min-width: 360px) {
  .hero__title {
    font-size: 34px;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 54px;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 72px;
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.about {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
}
@media (min-width: 768px) {
  .about {
    padding: 120px 0;
  }
}
.about__content {
  position: relative;
}
.about__title {
  margin-bottom: 40px;
  max-width: 700px;
}
@media (min-width: 1024px) {
  .about__title {
    margin-bottom: 60px;
  }
}
.about__grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
.about__text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 20px;
}
.about__text:last-child {
  margin-bottom: 0;
}
.about__decoration--pattern {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 150px;
  height: 150px;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(#2d5a27 2px, transparent 2px);
  background-size: 20px 20px;
}
.about__decoration--pattern::after {
  content: "🚜";
  position: absolute;
  font-size: 40px;
  top: -20px;
  right: 0;
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__content > * {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.offer {
  padding: 100px 0;
  background-color: #fdfaf5;
}
.offer__title {
  text-align: center;
  margin-bottom: 60px;
}
.offer__grid {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .offer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offer-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(45, 90, 39, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(45, 90, 39, 0.1);
}
.offer-card:hover .offer-card__decoration {
  transform: scale(1.1) rotate(5deg);
}
.offer-card__icon {
  font-size: 48px;
  margin-bottom: 25px;
}
.offer-card__title {
  font-family: "Fraunces", serif;
  font-size: 28px;
  color: #2d5a27;
  margin-bottom: 20px;
}
.offer-card__list {
  list-style: none;
  margin-bottom: 35px;
  flex-grow: 1;
}
.offer-card__item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(26, 26, 26, 0.8);
}
.offer-card__item::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f4b41a;
  font-weight: bold;
}
.offer-card__btn {
  align-self: flex-start;
  padding: 12px 28px;
}
.offer-card__decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(244, 180, 26, 0.1);
  border-radius: 50%;
  z-index: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.offer-card__decoration--liquids {
  background: rgba(45, 90, 39, 0.05);
}
.offer__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(45, 90, 39, 0.03);
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid #f4b41a;
  max-width: 900px;
  margin: 0 auto;
}
.offer__info-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.offer__info-text {
  font-style: italic;
  color: rgba(26, 26, 26, 0.9);
  line-height: 1.6;
}

.industries {
  padding: 100px 0;
  background-color: #ffffff;
}
.industries__content {
  text-align: center;
}
.industries__title {
  margin-bottom: 20px;
}
.industries__text {
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: rgba(26, 26, 26, 0.7);
}
.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .industries__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.industries__card {
  padding: 40px 20px;
  background: #fdfaf5;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.industries__card:hover {
  background: #ffffff;
  border-color: #f4b41a;
  transform: scale(1.05);
}
.industries__card:hover .industries__card-icon {
  transform: rotateY(360deg);
}
.industries__card-icon {
  font-size: 50px;
  margin-bottom: 20px;
  transition: transform 0.6s 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.industries__card-title {
  font-family: "Fraunces", serif;
  font-size: 18px;
  color: #2d5a27;
  font-weight: 700;
}
.industries__decoration-line {
  width: 100%;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f4b41a, transparent);
  margin: 60px auto 0;
}

.cta {
  padding: 60px 0;
  background: #2d5a27;
  position: relative;
  overflow: hidden;
}
.cta__content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta__text {
  font-family: "Fraunces", serif;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .cta__text {
    font-size: 32px;
  }
}
.cta::before {
  content: "🥚";
  position: absolute;
  font-size: 150px;
  opacity: 0.05;
  bottom: -50px;
  left: -20px;
  transform: rotate(-15deg);
}

.contact {
  padding: 100px 0;
  background: #ffffff;
}
.contact__grid {
  display: grid;
  gap: 50px;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 2fr;
  }
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.contact__info-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: #fdfaf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__info-text, .contact__info-link {
  font-size: 18px;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.4;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__info-link:hover {
  color: #f4b41a;
}

.form__wrapper {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .form__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.form__input, .form__textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(45, 90, 39, 0.1);
  background: #fdfaf5;
  border-radius: 12px;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  outline: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.form__input:focus, .form__textarea:focus {
  border-color: #f4b41a;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(45, 90, 39, 0.05);
}
.form__textarea {
  min-height: 150px;
  resize: vertical;
  margin-bottom: 30px;
}
.form__btn {
  width: 100%;
}
@media (min-width: 768px) {
  .form__btn {
    width: auto;
    min-width: 200px;
  }
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 90, 39, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.popup__content {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.8);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.active .popup__content {
  transform: scale(1);
}
.popup__icon {
  font-size: 60px;
  margin-bottom: 20px;
}
.popup__title {
  font-family: "Fraunces", serif;
  color: #2d5a27;
  margin-bottom: 15px;
}

.footer {
  background-color: #f8f9fa;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(45, 90, 39, 0.05);
}
.footer__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}
.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer__logo-img {
  height: 65px;
  width: auto;
}
.footer__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  max-width: 300px;
}
.footer__title {
  font-family: "Fraunces", serif;
  font-size: 20px;
  color: #2d5a27;
  margin-bottom: 25px;
  font-weight: 700;
}
.footer__nav-list {
  list-style: none;
}
.footer__nav-item {
  margin-bottom: 12px;
}
.footer__nav-link {
  text-decoration: none;
  color: rgba(26, 26, 26, 0.8);
  font-size: 15px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__nav-link:hover {
  color: #f4b41a;
  padding-left: 5px;
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.footer__form-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(45, 90, 39, 0.1);
  border-radius: 50px;
  background: #ffffff;
  font-family: "Urbanist", sans-serif;
  outline: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__form-input:focus {
  border-color: #f4b41a;
}
.footer__form-btn {
  padding: 14px;
  font-size: 14px;
}
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(45, 90, 39, 0.1);
  text-align: center;
}
.footer__copyright {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.5);
}

.popup--subscribe .popup__icon {
  font-size: 50px;
  background: #e8f5e9;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.page-hero {
  padding: 120px 0 60px;
  background-color: #fdfaf5;
  position: relative;
}
@media (min-width: 768px) {
  .page-hero {
    padding: 160px 0 100px;
  }
}
.page-hero__content {
  max-width: 800px;
}
.page-hero .breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(26, 26, 26, 0.5);
}
.page-hero .breadcrumb span {
  color: #2d5a27;
  font-weight: 600;
}
.page-hero .breadcrumb a {
  text-decoration: none;
  color: inherit;
}
.page-hero .breadcrumb a:hover {
  color: #f4b41a;
}
.page-hero__title {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 5vw, 56px);
  color: #2d5a27;
  margin-bottom: 25px;
  line-height: 1.1;
}
.page-hero__description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.8);
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #f4b41a, transparent);
}

.tech-specs {
  padding: 60px 0;
}
.tech-specs__grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .tech-specs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tech-specs__item {
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}
.tech-specs__number {
  display: block;
  font-family: "Fraunces", serif;
  color: #f4b41a;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0.4;
}
.tech-specs__label {
  color: #2d5a27;
  margin-bottom: 10px;
}

.catalog {
  padding: 80px 0;
  background: #ffffff;
}
.catalog__main-title {
  text-align: center;
  margin-bottom: 50px;
}
.catalog__grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.catalog-card {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid rgba(45, 90, 39, 0.05);
  border-radius: 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.catalog-card:hover {
  border-color: #f4b41a;
  transform: translateY(-5px);
}
.catalog-card__image {
  font-size: 50px;
  margin-bottom: 25px;
}
.catalog-card__title {
  font-family: "Fraunces", serif;
  color: #2d5a27;
  margin-bottom: 15px;
}
.catalog-card__text {
  font-size: 15px;
  color: rgba(26, 26, 26, 0.7);
}

.process {
  padding: 80px 0;
}
.process__box {
  background: #2d5a27;
  padding: 60px 40px;
  border-radius: 30px;
  color: #ffffff;
}
.process__title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}
.process__steps {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process__step {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 768px) {
  .process__step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #f4b41a;
  }
}

.usage {
  padding: 80px 0;
}
.usage__wrapper {
  display: grid;
  gap: 50px;
  align-items: center;
}
@media (min-width: 768px) {
  .usage__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.usage__list {
  list-style: none;
  margin-top: 30px;
}
.usage__list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(45, 90, 39, 0.1);
  font-weight: 500;
}
.usage__list li::before {
  content: "•";
  color: #f4b41a;
  margin-right: 15px;
  font-size: 20px;
}
.usage__decoration {
  height: 400px;
  background: #fdfaf5;
  border-radius: 100px 30px 100px 30px;
  position: relative;
}
.usage__decoration::after {
  content: "🥚";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  filter: grayscale(1);
  opacity: 0.1;
}

.inquiry {
  padding: 80px 0;
}
.inquiry__title {
  font-family: "Fraunces", serif;
  font-size: 32px;
  margin-bottom: 20px;
}
.inquiry__card {
  background: #f4b41a;
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  color: #1a1a1a;
}
.inquiry__card p {
  margin-bottom: 30px;
  font-size: 18px;
}

.page-hero--liquids {
  background: linear-gradient(135deg, #fdfaf5 0%, #edf4ec 100%);
}
.page-hero--liquids::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(45, 90, 39, 0.03) 0%, transparent 70%);
}

.logistics {
  padding: 80px 0;
}
.logistics__grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .logistics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.logistics__card {
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(45, 90, 39, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.logistics__card:hover {
  background: #2d5a27;
  color: #ffffff;
}
.logistics__card:hover p {
  color: rgba(255, 255, 255, 0.8);
}
.logistics__card:hover .logistics__card-title {
  color: #ffffff;
}
.logistics__card-title {
  font-family: "Fraunces", serif;
  margin: 20px 0 15px;
  color: #2d5a27;
}
.logistics__icon {
  font-size: 32px;
}

.liquid-catalog {
  padding: 100px 0;
  background: #fdfdfd;
}
.liquid-catalog__title {
  text-align: center;
  margin-bottom: 60px;
}
.liquid-catalog__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .liquid-catalog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-item__visual {
  height: 250px;
  background: #fdfaf5;
  border-radius: 30px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-item__liquid {
  width: 120px;
  height: 120px;
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  animation: liquidMorph 8s ease-in-out infinite;
}
.product-item__liquid--whole {
  background: #f9d976;
  box-shadow: 0 0 30px rgba(249, 217, 118, 0.4);
}
.product-item__liquid--white {
  background: #ffffff;
  border: 1px solid #eee;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.product-item__liquid--yolk {
  background: #ffa000;
  box-shadow: 0 0 30px rgba(255, 160, 0, 0.4);
}
.product-item__name {
  font-family: "Fraunces", serif;
  color: #2d5a27;
  margin-bottom: 10px;
}
.product-item__desc {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.7);
}

@keyframes liquidMorph {
  0%, 100% {
    border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  }
  50% {
    border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
  }
}
.packaging {
  padding: 100px 0;
  background: #2d5a27;
  color: #ffffff;
}
.packaging__wrapper {
  display: grid;
  gap: 50px;
  align-items: center;
}
@media (min-width: 768px) {
  .packaging__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.packaging .title {
  color: #ffffff;
  margin-bottom: 20px;
}
.packaging__lead {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}
.packaging__list {
  list-style: none;
}
.packaging__list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
.packaging__list li::before {
  content: "📦";
  position: absolute;
  left: 0;
}
.packaging__box {
  height: 350px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
}
.packaging__box-img {
  width: auto;
}

.quality-checks {
  padding: 100px 0;
  text-align: center;
}
.quality-checks__header {
  margin-bottom: 60px;
}
.quality-checks__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-item span {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 48px;
  color: #f4b41a;
  font-weight: 700;
}
.stat-item p {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.samples {
  padding-bottom: 100px;
}
.samples__banner {
  background: #fdfaf5;
  padding: 50px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .samples__banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.samples__title {
  font-family: "Fraunces", serif;
  color: #2d5a27;
  margin-bottom: 10px;
}

.page-hero--quality {
  background: linear-gradient(to bottom, #ffffff, #fdfaf5);
  border-bottom: 1px solid rgba(45, 90, 39, 0.05);
}

.standards {
  padding: 80px 0;
}
.standards__grid {
  display: grid;
  gap: 25px;
}
@media (min-width: 768px) {
  .standards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.standard-box {
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(45, 90, 39, 0.1);
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.standard-box:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border-color: #f4b41a;
}
.standard-box__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.standard-box__code {
  font-family: "Fraunces", serif;
  font-size: 24px;
  color: #2d5a27;
  font-weight: 700;
}
.standard-box__status {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 20px;
}
.standard-box__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
}

.laboratory {
  padding: 100px 0;
  background-color: #ffffff;
}
.laboratory .title {
  margin-bottom: 30px;
}
.laboratory__wrapper {
  display: grid;
  gap: 60px;
  align-items: center;
}
@media (min-width: 768px) {
  .laboratory__wrapper {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.laboratory__list {
  list-style: none;
  margin-top: 30px;
}
.laboratory__list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
}
.laboratory__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: #f4b41a;
}
.laboratory__visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lab-microscope {
  font-size: 80px;
  z-index: 2;
}

.lab-circles {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lab-circles .lab-circle {
  position: absolute;
  border: 1px solid rgba(45, 90, 39, 0.1);
  border-radius: 50%;
  animation: pulseCircle 4s infinite ease-in-out;
}
.lab-circles .lab-circle--1 {
  width: 200px;
  height: 200px;
}
.lab-circles .lab-circle--2 {
  width: 280px;
  height: 280px;
  animation-delay: 1s;
}

@keyframes pulseCircle {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}
.traceability {
  padding: 100px 0;
  background: #fdfaf5;
}
.traceability__title {
  text-align: center;
  margin-bottom: 60px;
}
.traceability__steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .traceability__steps {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.t-step {
  text-align: center;
  flex: 1;
}
.t-step__icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.t-step__label {
  display: block;
  font-family: "Fraunces", serif;
  color: #2d5a27;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.t-step__desc {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.6);
}
.t-step__line {
  display: none;
}
@media (min-width: 1024px) {
  .t-step__line {
    display: block;
    flex: 0.5;
    height: 2px;
    background: rgba(45, 90, 39, 0.1);
    margin-top: 25px;
  }
}

.audit-cta {
  padding: 100px 0;
  text-align: center;
}
.audit-cta__title {
  font-family: "Fraunces", serif;
  font-size: 32px;
  color: #2d5a27;
  margin-bottom: 20px;
}
.audit-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.page-hero--about {
  background: linear-gradient(rgba(45, 90, 39, 0.05), rgba(253, 250, 245, 0.3)), radial-gradient(at top right, rgba(244, 180, 26, 0.1), transparent);
}

.story {
  padding: 100px 0;
}
.story__grid {
  display: grid;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) {
  .story__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.story__image {
  height: 500px;
  background-color: #e0e0e0;
  border-radius: 40px;
  position: relative;
  background-image: url("/assets/img/farm-history.webp");
  background-size: cover;
  background-position: center;
}
.story__image::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 2px solid #f4b41a;
  border-radius: 50px;
  z-index: -1;
  opacity: 0.3;
}
.story__experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #2d5a27;
  color: #ffffff;
  padding: 25px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.story__experience-badge span {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #f4b41a;
  font-family: "Fraunces", serif;
}
.story__text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(26, 26, 26, 0.8);
}

.pillars {
  padding: 80px 0;
  background-color: #fdfaf5;
}
.pillars__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  text-align: center;
  padding: 20px;
}
.pillar__icon {
  font-size: 45px;
  margin-bottom: 20px;
}
.pillar__title {
  font-family: "Fraunces", serif;
  color: #2d5a27;
  margin-bottom: 15px;
}

.team {
  padding: 100px 0;
  text-align: center;
}
.team__header {
  margin-bottom: 60px;
}
.team__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.team-stat__num {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 56px;
  color: #2d5a27;
  font-weight: 700;
  margin-bottom: 5px;
}
.team-stat p {
  font-weight: 600;
  color: #f4b41a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission {
  padding: 80px 0;
}
.mission__wrapper {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .mission__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.mission__card {
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 30px;
  border: 1px solid rgba(45, 90, 39, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}
.mission__card--vision {
  background: #2d5a27;
  color: #ffffff;
}
.mission__card--vision .mission__title {
  color: #ffffff;
}
.mission__title {
  font-family: "Fraunces", serif;
  font-size: 28px;
  color: #2d5a27;
  margin-bottom: 20px;
}

.farm-cta {
  padding-bottom: 100px;
}
.farm-cta__box {
  background: #2d5a27;
  padding: 80px 40px;
  border-radius: 40px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.farm-cta__box::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(244, 180, 26, 0.1);
  border-radius: 50%;
}
.farm-cta__title {
  font-family: "Fraunces", serif;
  font-size: 36px;
  margin-bottom: 20px;
}
.farm-cta p {
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
  font-size: 18px;
}
.farm-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.btn--outline-white {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn--outline-white:hover {
  background: #ffffff;
  color: #2d5a27;
}

.page-hero--transport {
  background: linear-gradient(90deg, #f0f2f0 0%, #e0eafc 100%);
  overflow: hidden;
}
.page-hero--transport::after {
  content: "🚛";
  position: absolute;
  right: -50px;
  bottom: 20px;
  font-size: 120px;
  opacity: 0.05;
  transform: translateX(-100px);
  animation: truckDrive 10s linear infinite;
}

@keyframes truckDrive {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-200px);
  }
}
.fleet {
  padding: 100px 0;
}
.fleet__grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .fleet__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fleet-card {
  padding: 40px;
  background: #ffffff;
  border-bottom: 4px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.fleet-card:hover {
  transform: translateY(-10px);
  border-color: #f4b41a;
}
.fleet-card__icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.fleet-card__title {
  font-family: "Fraunces", serif;
  color: #2d5a27;
  margin-bottom: 15px;
}

.reach {
  padding: 100px 0;
  background-color: #ffffff;
}
.reach .title {
  margin-bottom: 30px;
}
.reach__wrapper {
  display: grid;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) {
  .reach__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.reach__countries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.country-tag {
  padding: 8px 16px;
  background: #fdfaf5;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #2d5a27;
}

.reach__map-visual {
  background-image: url("/assets/img/map.webp");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #f4b41a;
  border-radius: 50%;
}
.map-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid #f4b41a;
  border-radius: 50%;
  animation: ripple 2s infinite;
}
.map-dot--pl {
  top: 7%;
  left: 83%;
}
.map-dot--de {
  top: 56%;
  left: 45%;
}
.map-dot--cz {
  top: 75%;
  left: 58%;
}

@keyframes ripple {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
.transport-types {
  padding: 100px 0;
  background: #fdfaf5;
}
.transport-types__title {
  text-align: center;
  margin-bottom: 50px;
}
.transport-types .t-types__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .transport-types .t-types__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.t-type {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}
.t-type__name {
  color: #2d5a27;
  margin-bottom: 10px;
  font-size: 18px;
}
.t-type p {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.6);
}

.log-standards {
  padding: 80px 0;
}
.log-standards__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  text-align: center;
}
.log-standards__val {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 40px;
  color: #2d5a27;
  font-weight: 700;
  margin-bottom: 10px;
}
.log-standards p {
  max-width: 250px;
  font-size: 14px;
  font-weight: 500;
}

.log-cta {
  padding-bottom: 100px;
}
.log-cta__content {
  background: linear-gradient(135deg, #2d5a27 0%, #0a2d1d 100%);
  padding: 80px 40px;
  border-radius: 40px;
  text-align: center;
  color: #ffffff;
}
.log-cta__title {
  font-family: "Fraunces", serif;
  font-size: 32px;
  margin-bottom: 20px;
}
.log-cta p {
  margin-bottom: 40px;
  opacity: 0.8;
}

.page-hero--contact {
  background-color: #2d5a27;
}
.page-hero--contact .page-hero__title,
.page-hero--contact .page-hero__description,
.page-hero--contact .breadcrumb {
  color: #ffffff;
}
.page-hero--contact .breadcrumb span {
  color: #f4b41a;
}
.page-hero--contact {
  border-bottom: none;
}

.contact--page {
  background: #ffffff;
  margin-top: -50px;
}
.contact--page .contact__grid {
  background: #ffffff;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}
.contact--page .contact__title {
  margin-bottom: 30px;
}
.contact--page .contact__socials {
  margin-top: 40px;
}
.contact--page .contact__socials p {
  font-weight: 700;
  margin-bottom: 10px;
}
.contact--page .contact__socials .social-links {
  display: flex;
  gap: 15px;
}
.contact--page .contact__socials .social-link {
  color: #f4b41a;
  text-decoration: none;
  font-weight: 500;
}

.hours {
  padding: 80px 0;
}
.hours__card {
  background: #fdfaf5;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}
.hours__grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .hours__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hours__item {
  display: flex;
  flex-direction: column;
}
.hours__item span:first-child {
  font-weight: 700;
  color: #2d5a27;
}
.hours__item span:last-child {
  font-size: 20px;
  color: #f4b41a;
}

.faq-preview {
  padding: 100px 0;
}
.faq-preview__title {
  text-align: center;
  margin-bottom: 50px;
}
.faq-preview__grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .faq-preview__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.faq-preview .faq-item {
  padding: 30px;
  border: 1px solid rgba(45, 90, 39, 0.05);
  border-radius: 15px;
}
.faq-preview .faq-item h3 {
  color: #2d5a27;
  margin-bottom: 15px;
  font-size: 18px;
}
.faq-preview .faq-item p {
  font-size: 15px;
  line-height: 1.6;
}

.departments {
  padding-bottom: 100px;
}
.departments__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .departments__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dept-card {
  padding: 30px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.dept-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.dept-card h3 {
  font-family: "Fraunces", serif;
  color: #2d5a27;
  margin-bottom: 10px;
}
.dept-card p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.7;
}
.dept-card a {
  color: #f4b41a;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
}

.page-hero--legal {
  background-color: #fdfaf5;
  text-align: left;
  padding: 80px 0;
  border-bottom: 1px solid rgba(45, 90, 39, 0.1);
}
.page-hero--legal .page-hero__description {
  font-style: italic;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.6);
}

.legal {
  padding: 80px 0 120px;
  background-color: #ffffff;
}
.legal__wrapper {
  max-width: 850px;
  margin: 0 auto;
}
.legal__section {
  margin-bottom: 60px;
}
.legal__section:last-child {
  margin-bottom: 0;
  padding-top: 40px;
  border-top: 2px solid #fdfaf5;
}
.legal__title {
  font-family: "Fraunces", serif;
  font-size: 26px;
  color: #2d5a27;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.legal p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.85);
  margin-bottom: 20px;
}
.legal ul,
.legal ol {
  margin-bottom: 25px;
  padding-left: 20px;
}
.legal ul li,
.legal ol li {
  list-style: disc;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 12px;
}
.legal ul li strong,
.legal ol li strong {
  color: #2d5a27;
}
.legal strong {
  color: #1a1a1a;
  font-weight: 700;
}

@media (min-width: 768px) {
  .legal__title {
    font-size: 30px;
  }
  .legal p {
    font-size: 18px;
  }
}
.legal__title::first-letter {
  color: #f4b41a;
  font-weight: 900;
}
.legal ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
.legal ol li {
  display: flex;
  gap: 15px;
}
.legal ol li::before {
  content: counter(item) ".";
  counter-increment: item;
  color: #f4b41a;
  font-weight: 700;
  min-width: 20px;
}

.legal__table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid rgba(45, 90, 39, 0.1);
  border-radius: 12px;
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  text-align: left;
}
.legal__table th,
.legal__table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(45, 90, 39, 0.05);
  font-size: 15px;
  line-height: 1.5;
}
.legal__table th {
  background-color: #fdfaf5;
  color: #2d5a27;
  font-family: "Fraunces", serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}
.legal__table tr:last-child td {
  border-bottom: none;
}
.legal__table strong {
  color: #2d5a27;
}
.legal a {
  color: #f4b41a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed #f4b41a;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.legal a:hover {
  color: #2d5a27;
  border-bottom-style: solid;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .cookie-banner__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 800px;
}
.cookie-banner__icon {
  font-size: 24px;
}
@media (max-width: 480px) {
  .cookie-banner__icon {
    display: none;
  }
}
.cookie-banner__text p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.8);
  margin: 0;
}
.cookie-banner__text p a {
  color: #2d5a27;
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner__text p a:hover {
  color: #f4b41a;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 13px;
}

.btn--outline-dark {
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.2);
  color: #1a1a1a;
}
.btn--outline-dark:hover {
  background: rgba(26, 26, 26, 0.05);
  border-color: #1a1a1a;
}

.error-page {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at center, #ffffff 0%, #fdfaf5 100%);
}
.error-page__wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.error-page__visual {
  position: relative;
  margin-bottom: 40px;
}
.error-page__code {
  font-family: "Fraunces", serif;
  font-size: clamp(120px, 20vw, 200px);
  font-weight: 900;
  line-height: 1;
  color: rgba(45, 90, 39, 0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.error-page__illustration {
  font-size: 80px;
  position: relative;
  z-index: 2;
  animation: eggWobble 3s infinite ease-in-out;
}
.error-page__title {
  font-family: "Fraunces", serif;
  font-size: 32px;
  color: #2d5a27;
  margin-bottom: 20px;
}
.error-page__description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 40px;
}
.error-page__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .error-page__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.error-page__nav p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #f4b41a;
}
.error-page__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.error-page__links a {
  text-decoration: none;
  color: #2d5a27;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.error-page__links a:hover {
  color: #f4b41a;
  border-bottom-color: #f4b41a;
}

@keyframes eggWobble {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-10deg) scale(1.1);
  }
  75% {
    transform: rotate(10deg) scale(1.1);
  }
}
.btn--outline {
  background: transparent;
  border: 2px solid #2d5a27;
  color: #2d5a27;
}
.btn--outline:hover {
  background: #2d5a27;
  color: #ffffff;
}