main {
  padding-top: 0;
}
.home-section {
  position: relative;
}
.home-section--concept .home-card--team {
  height: 100%;
}
.home-card__media {
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.home-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-section__actions {
  margin-top: var(--space-5);
}
.home-section--gastronomy .home-section__media {
  order: -1;
}
.home-section__image {
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.home-section__header {
  margin-bottom: var(--space-8);
}
.home-section__header--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.home-section__header--split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.home-section__grid {
  margin-top: var(--space-6);
}
.home-section__footer {
  margin-top: var(--space-8);
  display: flex;
  justify-content: flex-start;
}
.home-section__footer--center {
  justify-content: center;
}
.home-feature {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.home-feature__title {
  font-size: var(--font-size-lg);
}
.home-testimonials {
  margin-top: var(--space-6);
}
.home-testimonial blockquote {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--gray-800);
  border-left: 3px solid var(--color-accent-gold);
  padding-left: var(--space-4);
  margin-bottom: var(--space-4);
}
.home-testimonial__name {
  font-weight: 600;
  color: var(--color-heading);
}
.home-testimonial__meta {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-500);
}
.home-compliance__seal {
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.6) 0, transparent 45%), linear-gradient(145deg, #C5A059 0%, #F6E1A9 50%, #C5A059 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-compliance__seal-inner {
  width: 84%;
  height: 84%;
  border-radius: 999px;
  border: 1px dashed rgba(18, 20, 23, 0.22);
  background: rgba(250, 250, 247, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.6rem;
}
.home-compliance__seal-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-800);
}
.home-compliance__seal-note {
  font-size: 0.7rem;
  color: var(--gray-600);
  margin-top: 0.2rem;
}
.home-compliance__body {
  gap: var(--space-8);
}
.home-cta__content {
  margin-top: var(--space-6);
  gap: var(--space-10);
}
.home-cta__form {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(197, 160, 89, 0.24);
}
.home-cta__side {
  display: flex;
  align-items: stretch;
}
.home-cta__panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.home-cta__title {
  font-size: var(--font-size-xl);
}
.home-cta__note {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
}
.home-cta__link {
  border-bottom: 1px solid rgba(197, 160, 89, 0.4);
}
.home-cta__link:hover {
  border-bottom-color: var(--color-accent-gold);
}
.home-facts__inner span:first-child {
  font-weight: 600;
  color: var(--gray-800);
}
.link-arrow svg {
  width: 16px;
  height: 16px;
}
.btn-arrow svg {
  width: 18px;
  height: 18px;
}
.btn-arrow svg, .link-arrow svg {
  stroke: var(--color-accent-gold);
}
.btn-primary .btn-arrow svg {
  stroke: #FFFFFF;
}
@media (max-width: 960px) {
  .home-section--gastronomy .home-section__media {
    order: 0;
  }
  .home-section__header--split {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-cta__content {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .section {
    padding-block: var(--space-12);
  }
  .home-cta__form {
    padding: var(--space-5);
  }
  .home-section__footer {
    justify-content: center;
  }
}
ul {
  list-style: none !important;
}
.nav-toggle {
  flex-direction: column;
}
.btn-arrow svg, .link-arrow svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease, stroke 0.3s ease;
}
.btn:hover .btn-arrow svg, a:hover .link-arrow svg {
  transform: translate(3px, -3px);
}
