@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format(".woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format(".woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-light: #ffffff;
  --color-cream: #faf6ee;
  --color-cream-deep: #f1e8d6;
  --color-dark: #2e2a20;
  --color-gray: #8c8273;
  --color-accent: #b8893b;
  --color-accent-deep: #9a6f2c;
  --color-green: #4f7a3a;
  --color-footer: #2a251c;
  --border-soft: #e4dac4;
  --shadow-sm: 0 0.125rem 0.625rem rgba(46, 42, 32, 0.06);
  --shadow-warm: 0 0.875rem 2.5rem rgba(46, 42, 32, 0.1);
  --shadow-lg: 0 1.75rem 3.75rem rgba(46, 42, 32, 0.16);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --font-family-base: "Mulish", "Segoe UI", system-ui, sans-serif;
  --font-family-accent: "Playfair Display", "Georgia", serif;
  --container-width: 87.5rem;
  --container-padding-x: 1.5rem;
  --header-height: 4.75rem;
  --transition-duration: 0.2s;
  --transition-smooth: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 80rem;
  }
}
@media (width <= 47.99875rem) {
  :root {
    --container-padding-x: 1rem;
    --header-height: 4rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

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

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

html {
  background-color: var(--color-cream);
  scroll-padding-top: calc(var(--header-height) + 1rem);
}
html.is-lock {
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.65;
  font-family: var(--font-family-base);
  color: var(--color-dark);
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background-color: var(--color-accent);
  color: var(--color-light);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: -15%;
  pointer-events: none;
  background-repeat: no-repeat;
  will-change: transform;
}

body::before {
  background-image: radial-gradient(28rem 28rem at 18% 28%, rgba(184, 137, 59, 0.22), transparent 60%), radial-gradient(24rem 24rem at 82% 18%, rgba(184, 137, 59, 0.16), transparent 60%);
  animation: bg-drift-a 30s ease-in-out infinite alternate;
}

body::after {
  background-image: radial-gradient(26rem 26rem at 78% 72%, rgba(150, 104, 46, 0.2), transparent 60%), radial-gradient(22rem 22rem at 28% 82%, rgba(150, 104, 46, 0.14), transparent 60%);
  animation: bg-drift-b 36s ease-in-out infinite alternate;
}

@keyframes bg-drift-a {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4%, 3%, 0) scale(1.12);
  }
}
@keyframes bg-drift-b {
  from {
    transform: translate3d(0, 0, 0) scale(1.1);
  }
  to {
    transform: translate3d(-5%, -4%, 0) scale(1);
  }
}
main {
  flex-grow: 1;
}

h1,
.h1 {
  color: var(--color-light);
  font-family: var(--font-family-accent);
  font-weight: 600;
}

h2,
.h2,
h3,
.h3 {
  color: var(--color-dark);
  font-family: var(--font-family-accent);
  font-weight: 600;
}

h1,
.h1 {
  font-size: clamp(1.875rem, 1.2058823529rem + 2.7450980392vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

h2,
.h2 {
  font-size: clamp(1.75rem, 1.431372549rem + 1.3071895425vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-accent);
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--color-accent);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

a[aria-label],
button[aria-label] {
  position: relative;
}
a[aria-label]::before,
button[aria-label]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  aspect-ratio: 1;
  content: "";
}

.logo {
  max-width: clamp(9.1875rem, 8.3431372549rem + 3.4640522876vw, 12.5rem);
  max-height: clamp(2rem, 1.8406862745rem + 0.6535947712vw, 2.625rem);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.875rem 1.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
  background-color: var(--color-cream-deep);
  border: none;
  border-radius: 62.4375rem;
}
@media (width <= 90.06125rem) {
  .button {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .button:hover {
    background-color: #e6d9c0;
    color: var(--color-accent-deep);
  }
}
@media (any-hover: none) {
  .button:active {
    background-color: #e6d9c0;
    color: var(--color-accent-deep);
  }
}

.burger-button {
  width: 2.125rem;
  aspect-ratio: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.53125rem 0.265625rem;
  color: var(--color-dark);
  background-color: transparent;
  border: none;
  z-index: 3;
}
@media (any-hover: hover) {
  .burger-button:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .burger-button:active {
    color: var(--color-accent);
  }
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.25em -0.1em;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  rotate: -45deg;
}
.burger-button.is-active .burger-button__line:last-child {
  width: 0;
}
.burger-button__line {
  width: 100%;
  height: 0.125rem;
  background-color: currentColor;
  border-radius: 1rem;
  transition-duration: var(--transition-duration);
}
.burger-button__line:last-child {
  align-self: end;
  width: 55%;
}

html.is-dark-theme {
  background-color: #15120c;
  background-image: radial-gradient(135% 100% at 50% 0%, #2c2618 0%, #16130d 55%, #100d08 100%);
  background-attachment: fixed;
}
html.is-dark-theme body {
  color: var(--color-cream);
}
html.is-dark-theme h1,
html.is-dark-theme h2,
html.is-dark-theme h3,
html.is-dark-theme h4,
html.is-dark-theme h5,
html.is-dark-theme h6 {
  color: var(--color-cream);
}
html.is-dark-theme .button {
  background-color: #2a2620;
  color: var(--color-cream);
}
@media (any-hover: hover) {
  html.is-dark-theme .button:hover {
    background-color: #332e26;
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  html.is-dark-theme .button:active {
    background-color: #332e26;
    color: var(--color-accent);
  }
}
html.is-dark-theme .header {
  background-color: rgba(30, 27, 20, 0.78);
}
html.is-dark-theme .header.is-scrolled {
  background-color: rgba(30, 27, 20, 0.92);
  border-bottom-color: #3a352b;
}
html.is-dark-theme .header__menu-link {
  color: var(--color-cream);
}
@media (any-hover: hover) {
  html.is-dark-theme .header__menu-link:hover {
    background-color: #332e26;
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  html.is-dark-theme .header__menu-link:active {
    background-color: #332e26;
    color: var(--color-accent);
  }
}
@media (any-hover: hover) {
  html.is-dark-theme .header__switch-theme:hover {
    background-color: #332e26;
  }
}
@media (any-hover: none) {
  html.is-dark-theme .header__switch-theme:active {
    background-color: #332e26;
  }
}
html.is-dark-theme .header__contacts-button,
html.is-dark-theme .modal__button {
  color: var(--color-light);
  background-color: var(--color-accent);
}
@media (any-hover: hover) {
  html.is-dark-theme .header__contacts-button:hover,
  html.is-dark-theme .modal__button:hover {
    background-color: var(--color-accent-deep);
  }
}
@media (any-hover: none) {
  html.is-dark-theme .header__contacts-button:active,
  html.is-dark-theme .modal__button:active {
    background-color: var(--color-accent-deep);
  }
}
html.is-dark-theme .header__switch-theme {
  filter: brightness(0) invert(1);
}
html.is-dark-theme .burger-button__line {
  background-color: var(--color-cream);
}
html.is-dark-theme .section__main {
  color: var(--color-cream);
}
html.is-dark-theme .section__main p:first-child {
  color: var(--color-cream);
}
html.is-dark-theme .harvest {
  border-color: #3a352b;
  background: repeating-linear-gradient(to right, transparent 0, transparent 1.375rem, rgba(184, 137, 59, 0.07) 1.375rem, rgba(184, 137, 59, 0.07) 1.4375rem), radial-gradient(130% 120% at 50% 0%, #2a2620, #171510 85%);
}
html.is-dark-theme .products {
  background-color: #171510;
}
html.is-dark-theme .product-card__link {
  background-color: #2a2620;
  border-color: #3a352b;
}
@media (any-hover: hover) {
  html.is-dark-theme .product-card__link:hover {
    color: var(--color-cream);
    border-color: var(--color-accent);
  }
}
@media (any-hover: none) {
  html.is-dark-theme .product-card__link:active {
    color: var(--color-cream);
    border-color: var(--color-accent);
  }
}
html.is-dark-theme .product-card__image {
  border-color: #3a352b;
}
html.is-dark-theme .product-card__title {
  color: var(--color-cream);
}
html.is-dark-theme .product-card__text {
  color: #b8ae9c;
}
html.is-dark-theme .modal__content {
  background-color: #2a2620;
}
html.is-dark-theme .field__label {
  color: var(--color-cream);
}
html.is-dark-theme .field__control {
  color: var(--color-cream);
  background-color: #1e1b14;
  border-color: #3a352b;
}

.modal {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  background-color: rgba(30, 27, 20, 0.55);
  backdrop-filter: blur(0.375rem);
  transition: opacity var(--transition-duration);
}
.modal:not(.is-active) {
  opacity: 0;
  visibility: hidden;
}
.modal:not(.is-active) .modal__content {
  translate: 0 1rem;
  scale: 0.97;
}
.modal__content {
  position: relative;
  width: min(27.5rem, 100%);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background-color: var(--color-cream);
  border: 0.0625rem solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition-property: translate, scale;
  transition-duration: var(--transition-duration);
}
.modal__close-button {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: inline-flex;
  background-color: transparent;
  border: none;
}
.modal__close-button-cross {
  color: var(--color-gray);
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 700;
  transition-duration: var(--transition-duration);
}
@media (any-hover: hover) {
  .modal__close-button-cross:hover {
    color: var(--color-dark);
    text-decoration: none;
    cursor: pointer;
  }
}
@media (any-hover: none) {
  .modal__close-button-cross:active {
    color: var(--color-dark);
    text-decoration: none;
    cursor: pointer;
  }
}
.modal__button {
  width: 100%;
  margin-top: 0.5rem;
  color: var(--color-light);
  background-color: var(--color-accent);
  box-shadow: 0 0.375rem 1rem rgba(184, 137, 59, 0.3);
  transition-property: background-color, color, translate, box-shadow;
}
@media (any-hover: hover) {
  .modal__button:hover {
    color: var(--color-light);
    background-color: var(--color-accent-deep);
    translate: 0 -0.125rem;
    box-shadow: 0 0.625rem 1.375rem rgba(184, 137, 59, 0.38);
  }
}
@media (any-hover: none) {
  .modal__button:active {
    color: var(--color-light);
    background-color: var(--color-accent-deep);
    translate: 0 -0.125rem;
    box-shadow: 0 0.625rem 1.375rem rgba(184, 137, 59, 0.38);
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
}
.field__label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-dark);
}
.field__control {
  padding: 0.8125rem 0.9375rem;
  font-size: 1rem;
  color: var(--color-dark);
  background-color: var(--color-light);
  border: 0.0625rem solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition-property: border-color, box-shadow;
  transition-duration: var(--transition-duration);
}
.field__control::placeholder {
  color: var(--color-gray);
}
.field__control:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 0.1875rem rgba(184, 137, 59, 0.18);
}
.field__errors {
  color: #d00;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: rgba(250, 246, 238, 0.78);
  border-bottom: 0.0625rem solid transparent;
  transition-property: background-color, box-shadow, border-color;
  transition-duration: var(--transition-duration);
}
@media (width > 47.99875rem) {
  .header {
    backdrop-filter: blur(0.875rem);
  }
}
.header.is-scrolled {
  background-color: rgba(250, 246, 238, 0.92);
  border-bottom-color: var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.header__body {
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.header__body-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
  min-height: var(--header-height);
}
@media (width > 47.99875rem) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 47.99875rem) {
  .header__overlay {
    position: fixed;
    inset: 0;
    background-color: var(--color-footer);
    background-image: radial-gradient(135% 100% at 50% 0%, #2c2618 0%, #16130d 55%, #100d08 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 3rem;
    padding: 1rem;
    transition-duration: var(--transition-duration);
    z-index: 3;
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
}
.header__grain {
  display: none;
}
@media (width <= 47.99875rem) {
  .header__grain {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
}
@media (width <= 47.99875rem) {
  .header__menu {
    position: relative;
    z-index: 1;
    overflow-y: auto;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
@media (width <= 90.06125rem) {
  .header__menu-list {
    column-gap: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .header__menu-list {
    flex-direction: column;
    row-gap: 0.5rem;
    align-items: stretch;
  }
}
.header__menu-link {
  padding: 0.5625rem 1rem;
  font-weight: 600;
  color: var(--color-dark);
  background-color: transparent;
  border-radius: 0.625rem;
}
@media (any-hover: hover) {
  .header__menu-link:hover {
    background-color: var(--color-cream-deep);
    color: var(--color-accent-deep);
  }
}
@media (any-hover: none) {
  .header__menu-link:active {
    background-color: var(--color-cream-deep);
    color: var(--color-accent-deep);
  }
}
@media (width <= 47.99875rem) {
  .header__menu-link {
    display: flex;
    width: 100%;
    padding: 1.125rem 1.5rem;
    color: rgba(250, 246, 238, 0.85);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    background: rgba(44, 38, 24, 0.55);
    border-radius: 0.875rem;
    border: 0.0625rem solid rgba(184, 137, 59, 0.18);
    position: relative;
    overflow: hidden;
  }
  .header__menu-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 0.1875rem;
    background: linear-gradient(to bottom, var(--color-accent), #d8be7a);
    border-radius: 0 0.125rem 0.125rem 0;
    opacity: 0;
    scale: 1 0.3;
    transition: opacity var(--transition-smooth), scale var(--transition-smooth);
  }
}
@media (width <= 47.99875rem) and (any-hover: hover) {
  .header__menu-link:hover {
    color: var(--color-light);
    background: rgba(184, 137, 59, 0.16);
    border-color: rgba(184, 137, 59, 0.5);
    translate: 0.25rem 0;
  }
  .header__menu-link:hover::before {
    opacity: 1;
    scale: 1;
  }
}
@media (width <= 47.99875rem) and (any-hover: none) {
  .header__menu-link:active {
    color: var(--color-light);
    background: rgba(184, 137, 59, 0.16);
    border-color: rgba(184, 137, 59, 0.5);
    translate: 0.25rem 0;
  }
  .header__menu-link:active::before {
    opacity: 1;
    scale: 1;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}
@media (width <= 47.99875rem) {
  .header__actions {
    position: relative;
    z-index: 1;
    justify-content: center;
    flex-direction: column-reverse;
    row-gap: 1.25rem;
  }
}
.header__contacts-button {
  color: var(--color-light);
  background-color: var(--color-accent);
  box-shadow: 0 0.375rem 1rem rgba(184, 137, 59, 0.3);
  transition-property: background-color, color, translate, box-shadow;
}
@media (any-hover: hover) {
  .header__contacts-button:hover {
    color: var(--color-light);
    background-color: var(--color-accent-deep);
    translate: 0 -0.125rem;
    box-shadow: 0 0.625rem 1.375rem rgba(184, 137, 59, 0.38);
  }
}
@media (any-hover: none) {
  .header__contacts-button:active {
    color: var(--color-light);
    background-color: var(--color-accent-deep);
    translate: 0 -0.125rem;
    box-shadow: 0 0.625rem 1.375rem rgba(184, 137, 59, 0.38);
  }
}
.header__switch-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background-color: transparent;
}
@media (any-hover: hover) {
  .header__switch-theme:hover {
    background-color: var(--color-cream-deep);
  }
}
@media (any-hover: none) {
  .header__switch-theme:active {
    background-color: var(--color-cream-deep);
  }
}
.header__switch-theme img {
  transition: rotate var(--transition-duration);
}
@media (any-hover: hover) {
  .header__switch-theme:hover img {
    rotate: -20deg;
  }
}
@media (any-hover: none) {
  .header__switch-theme:active img {
    rotate: -20deg;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: calc(var(--header-height) + 2.5rem) 2.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  animation: hero-zoom 28s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(46, 42, 32, 0.6) 0%, rgba(46, 42, 32, 0.78) 60%, rgba(46, 42, 32, 0.95) 100%);
  z-index: 1;
}
.hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.75rem;
  max-width: 56.25rem;
}
.hero__subtitle {
  font-size: clamp(0.8125rem, 0.7009803922rem + 0.4575163399vw, 1.25rem);
  display: inline-flex;
  align-items: center;
  column-gap: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--color-accent);
  animation: hero-rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.05s both;
}
.hero__subtitle::before, .hero__subtitle::after {
  content: "";
  width: 1.75rem;
  height: 0.125rem;
  background-color: currentColor;
  border-radius: 62.4375rem;
  opacity: 0.7;
}
.hero__title {
  position: relative;
  padding-bottom: 1.75rem;
  animation: hero-rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s both;
}
.hero__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  width: 6rem;
  height: 0.1875rem;
  background-color: var(--color-accent);
  border-radius: 62.4375rem;
}
.hero__description {
  max-width: 38.75rem;
  color: rgba(250, 246, 238, 0.88);
  font-size: 1.1875rem;
  line-height: 1.7;
  animation: hero-rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.32s both;
}
@media (width <= 47.99875rem) {
  .hero__description {
    font-size: 1rem;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(1.625rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}
.section {
  padding-block: clamp(4.5rem, 10vw, 8.125rem);
}
.section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  column-gap: clamp(2.5rem, 6vw, 5.5rem);
  row-gap: 3rem;
}
@media (width <= 63.99875rem) {
  .section-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.section__body {
  max-width: 40rem;
}
@media (width <= 63.99875rem) {
  .section__body {
    margin-inline: auto;
  }
}
.section__title {
  position: relative;
  margin-bottom: 1.75rem;
  padding-top: 1.5rem;
}
.section__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 0.25rem;
  background-color: var(--color-accent);
  border-radius: 62.4375rem;
}
.section__main {
  color: var(--color-dark);
  line-height: 1.75;
}
.section__main p:first-child {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-dark);
}
@media (width <= 47.99875rem) {
  .section__main p:first-child {
    font-size: 1.125rem;
  }
}
.section__image {
  justify-self: center;
  width: 100%;
}

.products {
  background-color: var(--color-cream-deep);
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
}
.products__title {
  position: relative;
  text-align: center;
  padding-bottom: 1.5rem;
}
.products__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  width: 4.5rem;
  height: 0.1875rem;
  background-color: var(--color-accent);
  border-radius: 62.4375rem;
}
.products__subtitle {
  margin-top: 1.25rem;
  margin-inline: auto;
  max-width: 40rem;
  text-align: center;
  color: rgba(46, 42, 32, 0.85);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.6;
}
.products__list {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 2.4vw, 1.875rem);
}

.product-card {
  flex: 1 1 15rem;
  min-width: 13.75rem;
  max-width: 18.75rem;
}
.product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.875rem;
  background-color: var(--color-light);
  border: 0.0625rem solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  transition-property: translate, box-shadow, border-color;
  transition-duration: var(--transition-duration);
}
@media (any-hover: hover) {
  .product-card__link:hover {
    translate: 0 -0.5rem;
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
    color: var(--color-dark);
  }
}
@media (any-hover: none) {
  .product-card__link:active {
    translate: 0 -0.5rem;
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
    color: var(--color-dark);
  }
}
.product-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 0.0625rem solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: scale var(--transition-smooth);
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  row-gap: 0.625rem;
  padding: 1.125rem 0.625rem 0.5rem;
}
.product-card__title {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: 1.4375rem;
  line-height: 1.2;
  color: var(--color-dark);
}
.product-card__text {
  flex-grow: 1;
  color: var(--color-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.product-card__more {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  column-gap: 0.5rem;
  margin-top: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  color: var(--color-accent);
}
.product-card__more::after {
  content: "→";
  transition-duration: var(--transition-duration);
}
@media (any-hover: hover) {
  .product-card:hover .product-card__image {
    scale: 1.05;
  }
  .product-card:hover .product-card__more::after {
    translate: 0.375rem 0;
  }
}
@media (any-hover: none) {
  .product-card:active .product-card__image {
    scale: 1.05;
  }
  .product-card:active .product-card__more::after {
    translate: 0.375rem 0;
  }
}

.footer {
  background-image: linear-gradient(160deg, #322c20 0%, #241f17 100%);
  border-top: 0.1875rem solid var(--color-accent);
  color: var(--color-light);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 2.5rem;
  row-gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
@media (width <= 63.99875rem) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 1rem;
}
@media (width <= 63.99875rem) {
  .footer__menu-list {
    flex-direction: column;
    align-items: center;
  }
}
.footer__menu-link {
  position: relative;
  color: var(--color-light);
  font-weight: 600;
}
@media (any-hover: hover) {
  .footer__menu-link:hover {
    color: var(--color-light);
  }
}
@media (any-hover: none) {
  .footer__menu-link:active {
    color: var(--color-light);
  }
}
.footer__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3125rem;
  height: 0.125rem;
  background-color: var(--color-accent);
  border-radius: 62.4375rem;
  scale: 0 1;
  transform-origin: left;
  transition: scale var(--transition-duration);
}
@media (any-hover: hover) {
  .footer__menu-link:hover::after {
    scale: 1 1;
  }
}
@media (any-hover: none) {
  .footer__menu-link:active::after {
    scale: 1 1;
  }
}

.grain-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.grain {
  position: absolute;
  top: -8vh;
  width: 0.375rem;
  height: 0.6875rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  will-change: transform;
  animation-name: grain-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes grain-fall {
  from {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  to {
    transform: translateY(120vh) translateX(var(--drift, 0)) rotate(240deg);
  }
}
.harvest {
  aspect-ratio: 2/1;
  width: 100%;
  max-width: 35rem;
  overflow: hidden;
  padding: clamp(1.375rem, 3vw, 2.5rem);
  color: var(--color-accent);
  background: repeating-linear-gradient(to right, transparent 0, transparent 1.375rem, rgba(184, 137, 59, 0.05) 1.375rem, rgba(184, 137, 59, 0.05) 1.4375rem), radial-gradient(130% 120% at 50% 0%, var(--color-light), var(--color-cream-deep) 85%);
  border: 0.0625rem solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
}
@media (width <= 63.99875rem) {
  .harvest {
    margin-inline: auto;
  }
}
.harvest__scene {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hv-stalk ellipse {
  stroke-width: 1.6;
}

.hv-stubble {
  stroke-width: 1.5;
}

.hv-furrow {
  opacity: 0.4;
}

.hv-stalk-sway {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: hv-sway 4s ease-in-out infinite;
}

.hv-stalk-cut {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: hv-cut 11s linear infinite;
}

.hv-combine {
  animation: hv-drive 11s linear infinite;
}

.hv-reel,
.hv-wheelspin {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: hv-spin 1.6s linear infinite;
}

.hv-puff {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: hv-puff 2.4s ease-out infinite;
}

@keyframes hv-drive {
  0% {
    transform: translateX(360px);
  }
  80% {
    transform: translateX(-300px);
  }
  100% {
    transform: translateX(-300px);
  }
}
@keyframes hv-sway {
  0%, 100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
}
@keyframes hv-cut {
  0%, 7% {
    transform: scaleY(1);
  }
  11%, 88% {
    transform: scaleY(0.12);
  }
  94%, 100% {
    transform: scaleY(1);
  }
}
@keyframes hv-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes hv-puff {
  0% {
    opacity: 0.7;
    transform: translateY(0) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: translateY(-24px) scale(1.4);
  }
}
.hv-grain {
  fill: currentColor;
  stroke: none;
}

.hv-pour .hv-grain {
  transform-box: fill-box;
  animation-name: hv-drop;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes hv-drop {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: translateY(var(--drop, 30px));
    opacity: 0.15;
  }
}
.hv-convey {
  transform-box: fill-box;
  animation: hv-convey 4.2s linear infinite;
}

@keyframes hv-convey {
  0% {
    transform: translateX(78px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  86% {
    opacity: 1;
  }
  100% {
    transform: translateX(282px);
    opacity: 0.2;
  }
}
.hv-bob {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: hv-bob 3.4s ease-in-out infinite;
}

@keyframes hv-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
.hv-reel--rev {
  animation-direction: reverse;
}

.reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition-property: opacity, transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.section__main.reveal {
  transition-delay: 0.1s;
}

.section__image.reveal {
  transition-delay: 0.18s;
}

.products__subtitle.reveal {
  transition-delay: 0.08s;
}

.product-card:nth-child(2).reveal {
  transition-delay: 0.08s;
}

.product-card:nth-child(3).reveal {
  transition-delay: 0.16s;
}

.product-card:nth-child(4).reveal {
  transition-delay: 0.24s;
}

.product-card:nth-child(5).reveal {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/*# sourceMappingURL=main.css.map */
