:root {
  --cream: #f4efe6;
  --paper: #fffaf4;
  --white: #ffffff;
  --ink: #2b2420;
  --muted: #71645c;
  --gold: #8a6d3b;
  --rose: #c98b94;
  --wine: #7a2e33;
  --cocoa: #4c332b;
  --green: #526b56;
  --line: #e2d6cb;
  --shadow: 0 18px 42px rgba(43, 36, 32, 0.13);
  --serif: "Cormorant", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 190px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.46;
}

body.is-locked {
  overflow: hidden;
}

body.is-loaded .preloader {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

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

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

.nowrap {
  white-space: nowrap;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  gap: 10px;
  align-content: center;
  background: var(--cream);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.preloader__logo {
  width: min(260px, 58vw);
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.preloader__text,
.eyebrow {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.preloader__text {
  color: var(--muted);
}

.social-strip {
  position: relative;
  z-index: 70;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 12px;
}

.social-strip__inner {
  max-width: var(--max);
  min-height: 36px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.social-strip a {
  color: var(--rose);
  font-weight: 700;
}

.language-switcher {
  position: relative;
  font-family: var(--sans);
}

.language-switcher__button {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 250, 244, 0.28);
  border-radius: 4px;
  background: rgba(255, 250, 244, 0.08);
  color: var(--paper);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.language-switcher__button strong {
  color: var(--rose);
}

.language-switcher__button:hover,
.language-switcher.is-open .language-switcher__button {
  border-color: rgba(255, 250, 244, 0.52);
  background: rgba(255, 250, 244, 0.16);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 90;
  width: 182px;
  margin: 0;
  padding: 7px;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.language-switcher.is-open .language-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher__menu button {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  padding: 0 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.language-switcher__menu button:hover,
.language-switcher__menu button.is-active {
  background: var(--cream);
  color: var(--wine);
}

.main-menu > li.main-menu__language {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 230, 0.96);
  border-bottom: 1px solid rgba(226, 214, 203, 0.9);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(43, 36, 32, 0.09);
}

.header-main {
  min-height: 112px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-grid;
  justify-items: center;
  width: max-content;
  color: var(--gold);
}

.brand__logo {
  width: 220px;
  max-width: 42vw;
  height: auto;
}

.header-contact {
  justify-self: end;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
}

.header-contact a,
address a,
address span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.header-contact svg,
address svg,
.feature-band svg,
.btn svg,
.submenu-toggle svg,
.language-switcher svg,
.nav-toggle svg,
.social-tab svg,
.social-panel button svg,
.reason-list svg,
.partner-card svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-toggle i[data-lucide] {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  font-style: normal;
}

.nav-toggle i[data-lucide="menu"]::before {
  content: "\2630";
  font-size: 20px;
  line-height: 1;
}

.nav-toggle i[data-lucide="x"]::before {
  content: "\00d7";
  font-size: 24px;
  line-height: 1;
}

.nav-bar {
  border-top: 1px solid rgba(226, 214, 203, 0.84);
}

.main-menu {
  max-width: var(--max);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  list-style: none;
}

.main-menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.main-menu > li > a,
.submenu-toggle {
  min-width: 112px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-menu > li > a:hover,
.submenu-toggle:hover,
.has-submenu:focus-within > .submenu-toggle {
  color: var(--wine);
  background: rgba(255, 250, 244, 0.7);
}

.main-menu > li > a.main-menu__b2b {
  align-self: center;
  min-height: 40px;
  margin: 0 10px;
  padding: 0 18px;
  border: 1px solid var(--wine);
  border-radius: 4px;
  background: var(--wine);
  color: var(--paper);
}

.main-menu > li > a.main-menu__b2b:hover {
  border-color: #622327;
  background: #622327;
  color: var(--paper);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 50;
  min-width: 230px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.submenu a {
  display: block;
  padding: 11px 22px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.submenu a:hover {
  background: var(--cream);
  color: var(--wine);
}

.social-tab {
  position: fixed;
  right: 0;
  top: 44%;
  z-index: 55;
  width: 48px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px 0 0 6px;
  background: var(--wine);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.social-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(460px, 92vw);
  height: 100vh;
  padding: 132px 44px 44px;
  background: var(--paper);
  box-shadow: -18px 0 45px rgba(43, 36, 32, 0.18);
  transform: translateX(105%);
  transition: transform 0.28s ease;
}

.social-panel.is-open {
  transform: translateX(0);
}

.social-panel__close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.social-panel h2 {
  margin: 4px 0 14px;
  font-family: var(--sans);
  font-size: 40px;
  line-height: 1.1;
}

.social-panel p {
  margin: 0;
  color: var(--muted);
}

.social-panel__links {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.social-panel__links a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  height: clamp(480px, 62vh, 650px);
  min-height: 480px;
  overflow: hidden;
  background: var(--ink);
}

.hero-slider,
.hero-slide {
  height: 100%;
  min-height: 480px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 36, 32, 0.42), rgba(43, 36, 32, 0.14) 46%, rgba(43, 36, 32, 0) 82%),
    linear-gradient(0deg, rgba(43, 36, 32, 0.08), rgba(43, 36, 32, 0));
}

.hero-slide__content {
  position: absolute;
  left: max(24px, calc((100% - var(--max)) / 2 + 24px));
  top: 50%;
  width: min(650px, calc(100% - 48px));
  color: var(--paper);
  transform: translateY(-50%);
}

.hero-slide__content .eyebrow {
  color: #efd8ab;
  font-size: 15px;
  font-weight: 800;
}

.hero h1 {
  margin: 14px 0 20px;
  font-size: 74px;
  font-weight: 700;
  line-height: 0.94;
  text-shadow: 0 2px 20px rgba(43, 36, 32, 0.34);
  text-wrap: balance;
}

.hero p {
  max-width: 585px;
  margin: 0;
  color: rgba(255, 250, 244, 0.9);
  font-size: 23px;
  text-shadow: 0 1px 14px rgba(43, 36, 32, 0.38);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--wine);
  color: var(--paper);
}

.btn--primary:hover {
  background: #622327;
}

.btn--ghost {
  border-color: rgba(255, 250, 244, 0.58);
  color: var(--paper);
}

.btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 244, 0.44);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.12);
  color: var(--paper);
  transform: translateY(-50%);
  transition: background-color 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 250, 244, 0.26);
}

.hero-control--prev {
  left: 26px;
}

.hero-control--next {
  right: 26px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 250, 244, 0.48);
  padding: 0;
}

.hero-dots button.is-active {
  background: var(--paper);
}

.subpage-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.subpage-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 36, 32, 0.32), rgba(43, 36, 32, 0.08) 48%, rgba(43, 36, 32, 0) 86%),
    linear-gradient(0deg, rgba(43, 36, 32, 0.06), rgba(43, 36, 32, 0));
}

.subpage-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 86px 24px;
}

.subpage-hero .eyebrow {
  color: #efd8ab;
  font-size: 15px;
  font-weight: 800;
}

.subpage-hero h1 {
  max-width: 720px;
  margin: 10px 0 16px;
  font-size: 66px;
  line-height: 0.96;
  text-shadow: 0 2px 20px rgba(43, 36, 32, 0.34);
}

.subpage-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 244, 0.86);
  font-size: 23px;
  text-shadow: 0 1px 14px rgba(43, 36, 32, 0.38);
}

.intro,
.section-pad,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.section-heading h2 {
  margin: 8px 0 0;
  color: var(--cocoa);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.04;
}

.section-heading--center {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.intro__text p,
.occasion__content p,
.partners__copy p,
.reason-list p,
.partner-card p,
.category-intro p,
.product-card p {
  margin: 0;
  color: var(--muted);
}

.intro__text {
  display: grid;
  gap: 18px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.feature-band__item {
  min-height: 220px;
  padding: 42px 34px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature-band__item:last-child {
  border-right: 0;
}

.feature-band svg {
  width: 34px;
  height: 34px;
  color: var(--wine);
}

.feature-band h3 {
  margin: 14px 0 6px;
  color: var(--cocoa);
  font-size: 32px;
  line-height: 1;
}

.feature-band p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.catalog {
  background: var(--cream);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.catalog-card {
  position: relative;
  min-height: 465px;
  display: grid;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(43, 36, 32, 0.1);
}

.catalog-card img {
  height: 300px;
  padding: 12px;
  background: #f1e9df;
  border-bottom: 1px solid rgba(226, 214, 203, 0.68);
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.catalog-card:hover img {
  opacity: 0.94;
}

.catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
}

.catalog-card div {
  position: static;
  z-index: 2;
  min-height: 0;
  padding: 22px 24px 24px;
  background: rgba(255, 250, 244, 0.96);
  border-top: 1px solid rgba(226, 214, 203, 0.86);
  backdrop-filter: none;
}

.catalog-card--lift img {
  object-position: center center;
}

.catalog-card span {
  color: var(--wine);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
}

.catalog-card h3 {
  margin: 4px 0 8px;
  font-size: 34px;
  line-height: 1;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.occasion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--paper);
}

.occasion__image img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.occasion__content {
  min-height: 560px;
  padding: 76px max(34px, calc((100vw - var(--max)) / 2 + 24px)) 76px 70px;
  display: grid;
  align-content: center;
}

.occasion__content .eyebrow {
  color: #efd8ab;
  font-size: 15px;
  font-weight: 800;
}

.occasion__content h2 {
  max-width: 560px;
  margin: 10px 0 18px;
  font-size: 52px;
  line-height: 1;
}

.occasion__content p {
  max-width: 560px;
  color: rgba(255, 250, 244, 0.76);
}

.occasion__links {
  max-width: 590px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.occasion__links a,
.occasion__links span {
  border: 1px solid rgba(255, 250, 244, 0.23);
  border-radius: 4px;
  padding: 9px 12px;
  color: rgba(255, 250, 244, 0.9);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: default;
  user-select: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.occasion__links span {
  cursor: default;
  user-select: none;
}

.occasion__links a:hover,
.occasion__links span:hover {
  border-color: rgba(255, 250, 244, 0.72);
  background: rgba(255, 250, 244, 0.08);
  color: var(--paper);
}

.occasion-list li {
  cursor: default;
}

.occasion-list {
  max-width: 590px;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  color: rgba(255, 250, 244, 0.9);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.occasion-list li {
  position: relative;
  padding-left: 26px;
}

.occasion-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.partners__layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
  margin-top: 34px;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  color: var(--cocoa);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
}

.image-mosaic img {
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.image-mosaic img:first-child {
  grid-row: 1 / 3;
}

.reasons {
  background: var(--paper);
  padding: 88px 0;
}

.reasons .section-heading {
  padding: 0 24px;
}

.reason-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reason-list article,
.partner-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(43, 36, 32, 0.07);
}

.reason-list article {
  min-height: 236px;
  padding: 28px;
}

.reason-list svg {
  width: 30px;
  height: 30px;
  color: var(--wine);
}

.reason-list h3,
.partner-card h3 {
  margin: 16px 0 12px;
  color: var(--cocoa);
  font-size: 30px;
  line-height: 1;
}

.partner-card p {
  font-size: 18px;
  line-height: 1.42;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.contact h2 {
  margin: 10px 0 22px;
  color: var(--cocoa);
  font-size: 52px;
  line-height: 1;
}

address {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
}

address svg {
  color: var(--wine);
  flex: 0 0 auto;
}

address .contact-address__text {
  display: block;
}

address .contact-address__text span {
  display: block;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(43, 36, 32, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--cocoa);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 14px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(122, 46, 51, 0.13);
}

.contact-form textarea {
  resize: vertical;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn {
  width: max-content;
}

.contact-form .btn:disabled {
  opacity: 0.68;
}

.form-note {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--green);
  font-family: var(--sans);
  font-size: 13px;
}

.form-note.is-error {
  color: var(--wine);
}

.category-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 24px 34px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
}

.category-intro__copy {
  display: grid;
  gap: 18px;
}

.product-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 92px;
}

.product-toolbar {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
}

.product-toolbar strong {
  color: var(--cocoa);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 250px 1fr;
}

.product-card img {
  height: 250px;
  object-fit: cover;
  background: var(--paper);
}

.product-card__body {
  padding: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 10px;
}

.product-card h3 {
  margin: 0;
  color: var(--cocoa);
  font-size: 28px;
  line-height: 1;
}

.product-card p {
  font-size: 17px;
  line-height: 1.4;
}

.product-meta {
  margin: 8px 0 0;
  padding: 12px 0 0;
  display: grid;
  gap: 7px;
  align-self: end;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
}

.product-meta li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 9px;
  align-items: center;
}

.product-meta span {
  color: var(--cocoa);
  font-weight: 800;
  text-transform: uppercase;
}

.partner-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 88px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.partner-card {
  min-height: 260px;
  padding: 26px;
}

.partner-card svg {
  width: 30px;
  height: 30px;
  color: var(--wine);
}

.partner-cta {
  background: var(--ink);
  color: var(--paper);
}

.partner-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.partner-cta h2 {
  margin: 0 0 10px;
  font-size: 48px;
  line-height: 1;
}

.partner-cta p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 250, 244, 0.78);
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 34px;
  align-items: center;
}

.brand--footer {
  color: #efd8ab;
}

.brand--footer .brand__logo {
  width: 210px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 250, 244, 0.82);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 250, 244, 0.6);
  font-family: var(--sans);
  font-size: 12px;
}


@media (max-width: 1040px) {
  .header-main {
    grid-template-columns: 1fr auto;
  }

  .header-contact {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
  }

  .nav-bar {
    display: none;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .nav-bar {
    display: block;
  }

  .main-menu {
    min-height: 0;
    display: grid;
    padding: 10px 24px 22px;
  }

  .main-menu > li {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .main-menu > li > a,
  .submenu-toggle {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: 0;
  }

  .main-menu > li > a.main-menu__b2b {
    width: max-content;
    min-height: 42px;
    margin: 10px 0 12px;
    padding: 0 18px;
    justify-content: center;
  }

  .submenu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.24s ease;
  }

  .has-submenu.is-open .submenu {
    max-height: 220px;
    padding: 6px 0 12px;
  }

  .submenu a {
    padding: 9px 12px;
  }

  .product-grid,
  .reason-list,
  .catalog-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  body {
    font-size: 19px;
  }

  .social-strip__inner {
    justify-content: center;
  }

  .header-main {
    min-height: 92px;
    padding: 14px 18px;
  }

  .brand__logo {
    width: 188px;
  }

  .hero,
  .hero-slider,
  .hero-slide,
  .hero-slide img {
    min-height: 620px;
  }

  .hero-slide__content {
    top: 52%;
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: 54px;
  }

  .hero p,
  .subpage-hero p {
    font-size: 20px;
  }

  .hero-control {
    display: none;
  }

  .intro,
  .contact,
  .partners__layout,
  .occasion,
  .category-intro,
  .partner-cta__inner {
    grid-template-columns: 1fr;
  }

  .intro,
  .section-pad,
  .contact,
  .category-intro {
    padding: 68px 18px;
  }

  .section-heading h2,
  .contact h2,
  .occasion__content h2,
  .partner-cta h2 {
    font-size: 42px;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-band__item {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-band__item:last-child {
    border-bottom: 0;
  }

  .occasion__image img,
  .occasion__content {
    min-height: 0;
  }

  .occasion__content {
    padding: 56px 18px;
  }

  .image-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 240px);
  }

  .image-mosaic img:first-child {
    grid-row: auto;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .social-strip {
    display: none;
  }

  .main-menu > li.main-menu__language {
    display: block;
    padding: 10px 0 14px;
  }

  .main-menu__language .language-switcher__button {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    border-color: var(--line);
    background: var(--paper);
    color: var(--ink);
    padding: 0 12px;
    font-size: 12px;
  }

  .main-menu__language .language-switcher__menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .main-menu__language .language-switcher.is-open .language-switcher__menu {
    display: block;
  }

  .header-main {
    min-height: 82px;
  }

  .brand__logo {
    width: 150px;
  }

  .nav-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .nav-toggle {
    width: 42px;
    justify-content: center;
    padding: 0;
  }

  .hero,
  .hero-slider,
  .hero-slide,
  .hero-slide img {
    min-height: 600px;
  }

  .hero-slide__content {
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: 42px;
  }

  .hero p,
  .subpage-hero p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .product-grid,
  .reason-list,
  .catalog-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 0;
    grid-template-rows: 270px 1fr;
  }

  .catalog-card img {
    min-height: 0;
    height: 270px;
    padding: 10px;
  }

  .catalog-card div {
    padding: 20px 22px 22px;
  }

  .product-card {
    grid-template-rows: 230px 1fr;
  }

  .product-card img {
    height: 230px;
  }

  .social-tab {
    display: none;
  }

  .social-panel {
    padding: 96px 24px 32px;
  }

  .social-panel h2 {
    font-size: 34px;
  }

  .contact-form {
    padding: 20px;
  }
}
