@font-face {
  font-family: "Comfortaa";
  src: url("./assets/Comfortaa-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Iosevka Charon";
  src: url("./assets/IosevkaCharon-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Iosevka Charon";
  src: url("./assets/IosevkaCharon-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #ffcdd5;
  --pink-soft: #ffe8ec;
  --pink-line: #f4aab6;
  --white: #ffffff;
  --cream: #fff8f6;
  --cocoa: #3a1f1a;
  --cocoa-soft: #6e4941;
  --amber: #a45b14;
  --wine: #56251f;
  --green: #4f7665;
  --line: rgba(86, 37, 31, 0.18);
  --shadow: 0 22px 70px rgba(86, 37, 31, 0.12);
  --content-width: min(88.5rem, calc(100% - 11.4vw));
  --heading-font: "Comfortaa", Arial, sans-serif;
  --body-font: "Iosevka Charon", "Iosevka", "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 205, 213, 0.36) 0, rgba(255, 255, 255, 0) 34rem),
    var(--white);
  color: var(--cocoa);
  font-family: var(--body-font);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-compensation, 0);
}

body.modal-open .site-header {
  right: 0;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

::selection {
  background: var(--pink);
  color: var(--wine);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-5rem);
  border: 1px solid var(--wine);
  background: var(--white);
  color: var(--wine);
  padding: 0.75rem 1rem;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  color: var(--cocoa);
  background: linear-gradient(180deg, rgba(255, 248, 246, 0.94), rgba(255, 248, 246, 0.7) 68%, rgba(255, 248, 246, 0));
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  width: var(--locked-content-width, var(--content-width));
  max-width: var(--content-width);
  grid-template-columns: minmax(9rem, 1fr) auto minmax(9rem, 1fr);
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 1.4rem 0 1rem;
  transform: translateX(calc(var(--scrollbar-half-compensation, 0px) * -1));
}

.brand {
  width: max-content;
  font-family: var(--heading-font);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  min-width: 13.5rem;
  border: 1px solid var(--wine);
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0.8rem 1.3rem;
  text-align: center;
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--wine);
  color: var(--white);
  transform: translateY(-1px);
}

.proposal-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 205, 213, 0.72), rgba(255, 255, 255, 0.86)),
    rgba(58, 31, 26, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.proposal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.proposal-modal__panel {
  position: relative;
  width: min(64rem, 100%);
  max-height: calc(100svh - 2rem);
  overflow: hidden;
  border: 1px solid rgba(86, 37, 31, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(125deg, rgba(255, 248, 246, 0.98), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: 0 2rem 6rem rgba(86, 37, 31, 0.22);
  padding: clamp(1.5rem, 4vw, 4.5rem);
  transform: translateY(0.8rem);
  transition: transform 180ms ease;
}

.proposal-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1fr);
  gap: 3rem;
  max-height: calc(100svh - 2rem - clamp(1.5rem, 4vw, 4.5rem) * 2);
  overflow: auto;
}

.proposal-modal.is-open .proposal-modal__panel {
  transform: translateY(0);
}

.proposal-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--wine);
  cursor: pointer;
}

.proposal-modal__close:hover,
.proposal-modal__close:focus-visible {
  background: var(--white);
}

.proposal-modal__close svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.proposal-modal__copy {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  min-height: 100%;
}

.proposal-modal__copy-main {
  align-self: center;
}

.proposal-modal__copy h2 {
  margin-top: 0.9rem;
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
}

.proposal-modal__copy-main > p:not(.eyebrow) {
  margin-top: 1.2rem;
  color: var(--cocoa-soft);
}

.proposal-modal__copy > .modal-muted-note {
  align-self: end;
  margin-top: 2rem;
  color: rgba(239, 126, 135, 0.64);
  font-size: 0.82rem;
  line-height: 1.45;
}

.proposal-modal__form {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.proposal-modal__form .button {
  width: 100%;
  margin-top: 0.4rem;
}

.proposal-modal__form .form-note {
  max-width: none;
}

.contacts-modal__groups {
  display: grid;
  align-content: center;
  gap: 1.5rem;
}

.contacts-modal__group {
  display: grid;
  gap: 0.9rem;
}

.contacts-modal__group h3 {
  font-size: 1.05rem;
}

.contacts-modal__links {
  display: grid;
  gap: 0.75rem;
}

.contacts-modal__item {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
  border: 1px solid rgba(86, 37, 31, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0.8rem 1rem;
}

a.contacts-modal__item {
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

a.contacts-modal__item:hover,
a.contacts-modal__item:focus-visible {
  border-color: rgba(86, 37, 31, 0.34);
  background: var(--white);
  transform: translateY(-1px);
}

.contacts-modal__item strong {
  display: block;
  color: var(--wine);
  font-weight: 700;
}

.contacts-modal__item span {
  color: var(--cocoa-soft);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  background: linear-gradient(115deg, #fff5f1 0%, #fffaf8 54%, #fff 100%);
}

.hero::after {
  position: absolute;
  left: -5vw;
  right: -5vw;
  bottom: -4.4rem;
  height: 7.5rem;
  border-top: 4px solid rgba(255, 205, 213, 0.95);
  border-radius: 50% 50% 0 0;
  background: var(--white);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  min-height: 86svh;
  margin: 0 auto;
  padding: 9.3rem 0 7.5rem;
}

.hero-photo {
  position: absolute;
  inset: 0 auto 0 0;
  width: 61vw;
  height: 100%;
  max-width: 58rem;
  pointer-events: none;
}

.hero-photo__image {
  position: absolute;
  top: 50%;
  left: 0;
  aspect-ratio: 1014 / 760;
  width: auto;
  height: 70%;
  overflow: hidden;
  transform: translateY(-50%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 7%, #000 16%, #000 76%, rgba(0, 0, 0, 0.42) 91%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 7%, #000 15%, #000 78%, rgba(0, 0, 0, 0.58) 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 7%, #000 16%, #000 76%, rgba(0, 0, 0, 0.42) 91%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 7%, #000 15%, #000 78%, rgba(0, 0, 0, 0.58) 91%, transparent 100%);
  mask-composite: intersect;
}

.hero-photo__image img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}

.hero-content {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(42rem, 49vw);
  margin-left: auto;
  padding-top: 2.3rem;
  text-align: right;
}

.hero-content::before {
  position: absolute;
  z-index: -1;
  inset: -2.2rem -4vw -1.6rem -2.4rem;
  background: linear-gradient(90deg, rgba(255, 250, 248, 0.92), rgba(255, 250, 248, 0.86) 72%, rgba(255, 250, 248, 0.48));
  content: "";
  filter: blur(22px);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  font-size: 4.25rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0;
}

.hero-content p {
  width: min(33rem, 100%);
  margin-top: 2rem;
  margin-left: auto;
  color: var(--cocoa-soft);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2.15rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 8px;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg,
.header-cta svg,
.audience-card a svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 1rem 2.4rem rgba(86, 37, 31, 0.2);
}

.button-secondary {
  border-color: var(--wine);
  color: var(--wine);
  background: rgba(255, 255, 255, 0.52);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button:disabled:hover,
.button:disabled:focus-visible {
  transform: none;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 1.25rem 2.8rem rgba(86, 37, 31, 0.26);
}

.button-primary:disabled,
.button-primary:disabled:hover,
.button-primary:disabled:focus-visible {
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
}

.section {
  position: relative;
  padding: 6.2rem 0;
}

.section-inner {
  width: var(--content-width);
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.product-copy > p {
  width: min(42rem, 100%);
  margin-top: 1.2rem;
  color: var(--cocoa-soft);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.fact-item {
  min-height: 13.5rem;
  padding: 1.5rem 1.2rem 0 0;
}

.fact-item + .fact-item {
  border-left: 1px solid var(--pink-line);
  padding-left: 1.2rem;
}

.fact-item svg,
.audience-card > svg,
.terms-strip svg,
.contacts-modal__item svg {
  width: 2.25rem;
  height: 2.25rem;
  color: #ef7e87;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.fact-item h3 {
  margin-top: 1.55rem;
  font-size: 1rem;
}

.fact-item p {
  margin-top: 0.65rem;
  color: var(--cocoa-soft);
  font-size: 0.9rem;
}

.assortment-strip {
  position: relative;
  min-height: 24rem;
  margin-top: 3.8rem;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.assortment-strip::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.68);
  content: "";
}

.assortment-strip__images {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.assortment-strip__images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.assortment-strip__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.2rem;
  min-height: 24rem;
  place-content: center;
  justify-items: center;
  justify-content: center;
  padding: 3.8rem 1.5rem;
  text-align: center;
}

.assortment-strip__content h3 {
  width: min(42rem, 100%);
  color: var(--wine);
  font-family: var(--heading-font);
  font-size: clamp(1.45rem, 3.1vw, 2.55rem);
  line-height: 1.12;
  text-align: center;
}

.assortment-strip__lead {
  width: min(46rem, 100%);
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  line-height: 1.55;
}

.assortment-carousel {
  --assortment-row: 2.55rem;
  width: min(28rem, 100%);
  height: calc(var(--assortment-row) * 3);
  margin: 2rem 0;
  overflow: hidden;
  color: var(--cocoa);
  font-size: clamp(1.22rem, 2.4vw, 1.78rem);
  font-weight: 500;
  line-height: var(--assortment-row);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 16%, #000 44%, #000 56%, rgba(0, 0, 0, 0.35) 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 16%, #000 44%, #000 56%, rgba(0, 0, 0, 0.35) 84%, transparent 100%);
}

.assortment-strip .button {
  margin-top: 0.7rem;
}

.assortment-carousel__track {
  display: grid;
  animation: assortment-scroll 18s linear infinite;
}

.assortment-carousel__track span {
  height: var(--assortment-row);
}

@keyframes assortment-scroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.proposal-section {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(255, 205, 213, 0.55) 50%, rgba(255, 255, 255, 0.92)),
    var(--pink-soft);
}

.proposal-section h2,
.terms-section h2 {
  text-align: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3.2rem;
  background: rgba(244, 170, 182, 0.7);
  border: 1px solid rgba(244, 170, 182, 0.7);
  border-radius: 8px;
  overflow: hidden;
}

.audience-card {
  min-height: 26rem;
  padding: 2.4rem 2.2rem;
  background: rgba(255, 255, 255, 0.78);
}

.audience-card h3 {
  margin-top: 1.35rem;
}

.audience-card__subtitle {
  margin-top: 0.45rem;
  color: rgba(110, 73, 65, 0.74);
  font-size: 0.94rem;
}

.audience-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 2rem;
  padding-left: 1.2rem;
  color: var(--cocoa-soft);
}

.audience-card li::marker {
  color: var(--wine);
}

.audience-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  color: var(--wine);
  font-weight: 700;
}

.terms-section {
  background: var(--white);
}

.terms-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.terms-strip article {
  min-height: 13rem;
  padding: 1.7rem 1.4rem;
  text-align: center;
}

.terms-strip article + article {
  border-left: 1px solid var(--line);
}

.terms-strip svg {
  margin: 0 auto 1.2rem;
}

.terms-strip h3 {
  font-size: 1rem;
}

.terms-strip p {
  margin-top: 0.65rem;
  color: var(--cocoa-soft);
  font-size: 0.9rem;
}

.contacts-section {
  background:
    linear-gradient(100deg, rgba(255, 205, 213, 0.52), rgba(255, 255, 255, 0.82) 36%, rgba(255, 255, 255, 1) 100%),
    var(--white);
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 28rem) minmax(0, 1fr);
  gap: 4.5rem;
  align-items: start;
}

.contacts-list address {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.3rem;
  font-style: normal;
}

.contacts-list a,
.address-line {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  align-items: center;
  gap: 1.1rem;
  min-height: 3.15rem;
  font-size: 1.08rem;
}

.contacts-list svg {
  width: 2.65rem;
  height: 2.65rem;
  color: #ef7e87;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.contacts-list strong {
  display: block;
  color: var(--wine);
  font-weight: 700;
}

.contacts-list span {
  color: var(--cocoa-soft);
}

.request-form {
  display: grid;
  gap: 1.1rem;
  border-left: 1px solid var(--pink-line);
  padding-left: 4.5rem;
}

.request-form h2 {
  margin-bottom: 0.6rem;
}

.request-form__actions {
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--cocoa-soft);
  font-size: 0.85rem;
}

.consent-check {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  align-items: start;
  gap: 0.7rem;
  color: var(--cocoa-soft);
  line-height: 1.45;
}

.consent-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--wine);
}

.consent-check a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

input:not([type="checkbox"]),
textarea {
  width: 100%;
  border: 1px solid rgba(86, 37, 31, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--wine);
  outline: none;
  padding: 0.85rem 0.95rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  min-height: 9.2rem;
  resize: vertical;
}

input:not([type="checkbox"]):focus,
textarea:focus {
  border-color: var(--wine);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 205, 213, 0.58);
}

.request-form__actions .button {
  justify-self: start;
}

.form-note {
  max-width: 36rem;
  color: var(--cocoa-soft);
  font-size: 0.84rem;
}

.form-note:empty {
  display: none;
}

.policy-page > .section:first-child {
  padding-top: 9rem;
}

.policy-content {
  max-width: 58rem;
}

.policy-content h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.policy-content h2 {
  margin-top: 2.5rem;
  font-size: 1.35rem;
}

.policy-content p {
  margin-top: 1rem;
  color: var(--cocoa-soft);
}

.policy-table {
  width: 100%;
  margin-top: 1.2rem;
  border-collapse: collapse;
  color: var(--cocoa-soft);
}

.policy-table th,
.policy-table td {
  border: 1px solid var(--line);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  width: 32%;
  color: var(--wine);
  font-weight: 700;
}

.policy-content a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer {
  padding: 2.8rem 0;
  background: linear-gradient(90deg, rgba(255, 205, 213, 0.62), var(--white));
  border-top: 1px solid rgba(244, 170, 182, 0.55);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
}

.footer-inner p,
.footer-inner a:not(.brand) {
  color: var(--cocoa-soft);
  font-size: 0.9rem;
}

.footer-inner > p {
  color: rgba(110, 73, 65, 0.72);
  text-align: center;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
  justify-self: end;
  text-align: right;
}

.footer-links a {
  justify-self: end;
}

.footer-muted {
  color: rgba(239, 126, 135, 0.64);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 1.2rem;
  }

  .main-nav {
    gap: 1.2rem;
  }

  .header-cta {
    min-width: 11rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero-content {
    width: min(35rem, 48vw);
  }

  .product-grid,
  .contacts-grid {
    gap: 3rem;
  }

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

  .fact-item {
    min-height: 12rem;
    border-left: 0;
    border-right: 1px solid var(--pink-line);
  }

  .fact-item + .fact-item {
    border-left: 0;
  }

  .fact-item:nth-child(3n) {
    border-right: 0;
  }

  .terms-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .terms-strip article {
    border-bottom: 1px solid var(--line);
  }

  .terms-strip article + article {
    border-left: 0;
  }

  .terms-strip article:not(:nth-child(3n)) {
    border-right: 1px solid var(--line);
  }

  .terms-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 960px) {
  body {
    font-size: 15px;
  }

  .site-header {
    position: absolute;
    left: 0;
    right: 0;
  }

  .site-header__inner {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 1.1rem 1.2rem 0;
    transform: none;
  }

  .brand {
    font-size: 1.85rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.05rem;
    font-size: 0.86rem;
  }

  .header-cta {
    display: none;
  }

  .proposal-modal {
    padding: 0;
  }

  .proposal-modal__panel {
    width: 100%;
    min-height: 100svh;
    max-height: 100svh;
    border-radius: 0;
    padding: 4.8rem 1.2rem 2rem;
  }

  .proposal-modal__content {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1.8rem;
    max-height: calc(100svh - 6.8rem);
  }

  .proposal-modal__copy h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .proposal-modal__copy {
    height: auto;
    min-height: auto;
  }

  .proposal-modal__copy-main,
  .proposal-modal__copy > .modal-muted-note {
    align-self: start;
  }

  .proposal-modal__copy > .modal-muted-note {
    margin-top: 1.35rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    width: 100%;
    min-height: auto;
    padding: 8.2rem 1.2rem 5.6rem;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    width: calc(100% + 2.4rem);
    height: 25rem;
    margin: 0 -1.2rem 1rem;
  }

  .hero-photo__image {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    transform: none;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 7%, #000 15%, #000 84%, rgba(0, 0, 0, 0.55) 93%, transparent 100%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.48) 7%, #000 15%, #000 80%, rgba(0, 0, 0, 0.62) 92%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 7%, #000 15%, #000 84%, rgba(0, 0, 0, 0.55) 93%, transparent 100%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.48) 7%, #000 15%, #000 80%, rgba(0, 0, 0, 0.62) 92%, transparent 100%);
    mask-composite: intersect;
  }

  .hero-photo__image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: left center;
  }

  .hero-content {
    width: 100%;
    padding-top: 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    margin-top: 1.2rem;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .section {
    padding: 4.2rem 0;
  }

  .section-inner {
    width: calc(100% - 2.4rem);
  }

  .product-grid,
  .contacts-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .fact-grid,
  .terms-strip {
    grid-template-columns: 1fr;
  }

  .assortment-strip,
  .assortment-strip__content {
    min-height: 18rem;
  }

  .assortment-strip__images {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .assortment-strip__content {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 2.4rem 1rem;
    text-align: center;
  }

  .assortment-strip__content h3 {
    text-align: center;
    white-space: normal;
  }

  .assortment-carousel {
    justify-self: center;
  }

  .fact-item,
  .fact-item + .fact-item,
  .fact-item:nth-child(3n),
  .terms-strip article,
  .terms-strip article:not(:nth-child(3n)),
  .terms-strip article:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.35rem 0;
  }

  .audience-grid {
    gap: 1rem;
    background: transparent;
    border: 0;
  }

  .audience-card {
    min-height: auto;
    border: 1px solid rgba(244, 170, 182, 0.72);
    border-radius: 8px;
    padding: 1.5rem;
  }

  .request-form {
    border-left: 0;
    border-top: 1px solid var(--pink-line);
    padding: 2.3rem 0 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contacts-list h2 {
    text-align: center;
  }

  .contacts-list address {
    grid-template-columns: repeat(2, minmax(0, 14rem));
    justify-content: center;
    gap: 1rem;
  }

  .contacts-list a,
  .address-line {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.8rem;
    min-height: 3rem;
    font-size: 0.98rem;
  }

  .contacts-list .address-line {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(14rem, 100%);
  }

  .contacts-list svg {
    width: 2.25rem;
    height: 2.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
  }

  .footer-inner > div:first-child {
    order: 1;
    justify-self: center;
  }

  .footer-inner > p {
    order: 3;
  }

  .footer-links {
    order: 2;
    display: grid;
    grid-template-columns: 1fr;
    justify-self: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
  }

  .footer-links a,
  .footer-muted {
    justify-self: center;
  }
}

@media (max-width: 535px) {
  .hero-photo {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-photo__image {
    overflow: hidden;
  }

  .hero-photo__image img {
    position: relative;
    left: 50%;
    width: auto;
    height: 100%;
    margin: 0;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: translateX(-50%);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.12rem;
  }

  .main-nav {
    font-size: 0.78rem;
  }

  .button {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .assortment-strip,
  .assortment-strip__content {
    min-height: 14rem;
  }

  .assortment-carousel {
    --assortment-row: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .assortment-carousel__track {
    transform: translateY(calc(var(--assortment-row) * -2));
  }
}
