:root {
  --milk: #f4eee4;
  --milk-2: #fffaf2;
  --green: #103c2f;
  --green-2: #08231a;
  --sage: #9bab88;
  --graphite: #1f2420;
  --muted: #6b6f68;
  --line: rgba(16, 60, 47, 0.14);
  --honey: #c59645;
  --wood: #744b2a;
  --shadow: 0 24px 70px rgba(16, 60, 47, 0.12);
  --radius: 18px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(201, 150, 69, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--milk-2), var(--milk) 52%, #ede1d1);
  color: var(--graphite);
  font-family: var(--sans);
  letter-spacing: 0;
}

.thanks-page {
  min-height: 100dvh;
}

.thanks-shell {
  display: grid;
  min-height: 100dvh;
  align-content: center;
  gap: 34px;
  width: min(100% - 32px, 960px);
  margin: 0 auto;
  padding: 52px 0;
}

.thanks-card {
  max-width: 680px;
  border: 1px solid rgba(16, 60, 47, 0.12);
  border-radius: calc(var(--radius) + 12px);
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 34px 90px rgba(16, 60, 47, 0.1);
  padding: clamp(28px, 5vw, 62px);
}

.thanks-shell .brand {
  width: fit-content;
  justify-self: start;
}

.thanks-shell .brand small {
  justify-self: center;
}

.thanks-card h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-family: var(--serif);
  color: var(--green);
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.94;
}

.thanks-card p {
  max-width: 540px;
  color: rgba(31, 36, 32, 0.68);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(16, 60, 47, 0.08);
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: grid;
  color: var(--green);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 0.9;
}

.brand small,
.footer-brand small {
  justify-self: center;
  font-size: 15px;
  font-weight: 600;
}

.site-footer .footer-brand {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  justify-self: start;
  width: fit-content;
  color: var(--milk-2);
  flex-wrap: nowrap;
  line-height: 1;
  white-space: nowrap;
}

.site-footer .footer-brand small {
  justify-self: auto;
  font-size: 16px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: rgba(31, 36, 32, 0.68);
  font-size: 14px;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--green);
}

.manager-nav-link {
  color: var(--green);
  font-weight: 800;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-socials {
  position: relative;
  display: flex;
  gap: 6px;
  align-items: center;
}

.header-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 60, 47, 0.16);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.72);
  color: var(--green);
  cursor: pointer;
  padding: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(16, 60, 47, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.header-social-btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.header-social-btn img {
  width: 24px;
  height: 24px;
  border-radius: 9px;
  object-fit: contain;
}

.header-social-btn:hover,
.header-social-btn.is-active {
  border-color: rgba(16, 60, 47, 0.36);
  background: var(--green);
  color: var(--milk-2);
  transform: translateY(-1px);
}

.header-social-btn:hover img,
.header-social-btn.is-active img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.contact-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 40;
  width: 286px;
  border: 1px solid rgba(16, 60, 47, 0.14);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 24px 60px rgba(8, 35, 26, 0.18);
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.contact-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-popover__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--honey);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-popover strong {
  display: block;
  color: var(--green);
  font-size: 18px;
  line-height: 1.2;
}

.contact-popover p {
  margin: 8px 0 14px;
  color: rgba(31, 36, 32, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

.contact-popover__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border-radius: 999px;
  background: var(--green);
  color: var(--milk-2);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 900;
}

.contact-popover__action.is-disabled {
  border: 1px solid rgba(16, 60, 47, 0.16);
  background: rgba(16, 60, 47, 0.06);
  color: rgba(31, 36, 32, 0.56);
  cursor: default;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn-primary {
  background: var(--green);
  color: var(--milk-2);
  box-shadow: 0 16px 34px rgba(16, 60, 47, 0.18);
}

.btn-secondary {
  border-color: rgba(16, 60, 47, 0.26);
  background: rgba(255, 250, 242, 0.74);
  color: var(--green);
}

.btn-light {
  background: var(--milk-2);
  color: var(--green);
  box-shadow: 0 18px 36px rgba(2, 16, 11, 0.2);
}

.header-cta:hover,
.btn:hover,
.card-link:hover,
.product-order:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.menu-toggle {
  display: none;
}

.section-pad {
  padding: clamp(74px, 9vw, 128px) clamp(18px, 4vw, 56px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(56px, 6vw, 108px);
  align-items: start;
  max-width: 1480px;
  min-height: auto;
  margin: 0 auto;
  padding-top: clamp(40px, 4vw, 64px);
  padding-bottom: clamp(66px, 7vw, 104px);
}

.hero::before {
  position: absolute;
  top: clamp(42px, 5.5vw, 74px);
  left: clamp(18px, 4vw, 56px);
  width: min(42vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 60, 47, 0.42), transparent);
  content: "";
}

.hero-copy {
  max-width: 850px;
  padding-top: clamp(12px, 2vw, 30px);
  padding-bottom: 0;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: clamp(22px, 3vw, 38px);
  color: var(--wood);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 840px;
  margin-bottom: clamp(24px, 2.8vw, 34px);
  font-size: clamp(58px, 5.8vw, 96px);
  line-height: 0.95;
}

h1 span {
  display: block;
}

.hero-subline {
  max-width: 720px;
  margin-top: clamp(18px, 1.8vw, 26px);
  background: linear-gradient(102deg, #103c2f 0%, #2f573f 36%, #8a7742 68%, #c59645 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--green);
  -webkit-text-fill-color: transparent;
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1.12;
}

.hero-subline em {
  font-style: normal;
  -webkit-text-fill-color: inherit;
}

@supports not (-webkit-background-clip: text) {
  .hero-subline,
  .hero-subline em {
    color: var(--green);
    -webkit-text-fill-color: currentColor;
  }

  .hero-subline em {
    color: var(--honey);
  }
}

.hero p:not(.hero-kicker) {
  max-width: 560px;
  color: rgba(31, 36, 32, 0.75);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: clamp(30px, 3.4vw, 44px) 0 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 640px;
}

.hero-badges span,
.badge,
.product-badge,
.product-pack {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(16, 60, 47, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.68);
  color: rgba(31, 36, 32, 0.66);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.social-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.social-panel > span {
  color: rgba(31, 36, 32, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.hero-socials {
  margin-top: 18px;
  width: fit-content;
  border: 1px solid rgba(16, 60, 47, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(16, 60, 47, 0.96), rgba(8, 35, 26, 0.9)),
    radial-gradient(circle at 18% 10%, rgba(201, 150, 69, 0.18), transparent 13rem);
  padding: 8px;
  box-shadow: 0 18px 42px rgba(16, 60, 47, 0.14);
}

.hero-socials > span {
  color: rgba(255, 250, 242, 0.74);
  padding-left: 8px;
}

.social-link,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(16, 60, 47, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  color: var(--green);
  cursor: pointer;
  padding: 0 15px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover,
.footer-socials a:hover {
  border-color: rgba(16, 60, 47, 0.32);
  background: rgba(255, 250, 242, 0.92);
  transform: translateY(-1px);
}

.social-link--primary {
  border-color: rgba(16, 60, 47, 0.82);
  background: var(--green);
  color: var(--milk-2);
}

.social-link--primary:hover {
  background: #164d3d;
  color: var(--milk-2);
}

.hero-socials .social-link {
  border-color: rgba(255, 250, 242, 0.16);
  background: rgba(255, 250, 242, 0.1);
  color: var(--milk-2);
}

.hero-socials .social-link:hover {
  border-color: rgba(255, 250, 242, 0.38);
  background: rgba(255, 250, 242, 0.2);
}

.hero-media {
  position: relative;
  align-self: start;
  margin-top: clamp(14px, 2.6vw, 34px);
  margin-bottom: 0;
}

.hero-media::before {
  position: absolute;
  inset: 18% -8% -10% 8%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(16, 60, 47, 0.13);
  content: "";
  filter: blur(46px);
}

.hero-media img {
  width: 100%;
  height: clamp(520px, 39vw, 640px);
  aspect-ratio: 0.84;
  border: 1px solid rgba(16, 60, 47, 0.1);
  border-radius: calc(var(--radius) + 14px);
  box-shadow: 0 34px 90px rgba(16, 60, 47, 0.16);
  object-fit: cover;
}

.hero-media-note {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: grid;
  gap: 5px;
  min-width: 210px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(8, 35, 26, 0.72);
  color: var(--milk-2);
  padding: 16px 18px;
  backdrop-filter: blur(14px);
}

.hero-media-note span {
  color: rgba(255, 250, 242, 0.64);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media-note strong {
  font-size: 14px;
  line-height: 1.2;
}

.section {
  border-top: 1px solid rgba(16, 60, 47, 0.08);
}

.section-head {
  max-width: 790px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head.align-left {
  max-width: 1328px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.section-note {
  margin-bottom: 12px;
  color: var(--honey);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2,
.delivery h2,
.about h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1;
}

.section-head p,
.delivery p,
.about p,
.final-cta p {
  color: rgba(31, 36, 32, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.sets-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  max-width: 1328px;
  margin: 0 auto;
}

.set-card {
  display: flex;
  grid-column: span 2;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid rgba(16, 60, 47, 0.13);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.95), rgba(244, 238, 228, 0.78)),
    radial-gradient(circle at 90% 8%, rgba(201, 150, 69, 0.14), transparent 16rem);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 20px 54px rgba(16, 60, 47, 0.08);
}

.set-card.featured,
.set-card.dark {
  border-color: rgba(255, 250, 242, 0.12);
  background:
    linear-gradient(135deg, rgba(8, 35, 26, 0.98), rgba(16, 60, 47, 0.92)),
    url("assets/hero-product.png") 82% 50% / auto 120% no-repeat;
  color: var(--milk-2);
}

.set-card.warm {
  background: linear-gradient(145deg, rgba(238, 225, 207, 0.96), rgba(255, 250, 242, 0.74));
}

.set-card.wide {
  grid-column: span 3;
  min-height: 320px;
}

.set-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.set-number {
  color: rgba(31, 36, 32, 0.54);
  font-size: 13px;
  font-weight: 800;
}

.featured .set-number,
.dark .set-number {
  color: rgba(255, 250, 242, 0.62);
}

.badge {
  color: var(--green);
}

.featured .badge,
.dark .badge {
  border-color: rgba(255, 250, 242, 0.2);
  background: rgba(255, 250, 242, 0.1);
  color: var(--milk-2);
}

.set-card h3 {
  margin-bottom: 16px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 0.98;
}

.featured h3,
.dark h3 {
  color: var(--milk-2);
}

.set-card p {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(31, 36, 32, 0.68);
  font-size: 15px;
  line-height: 1.68;
}

.featured p,
.dark p {
  color: rgba(255, 250, 242, 0.72);
}

.set-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
}

.price {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1;
}

.featured .price,
.dark .price {
  color: var(--milk-2);
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 60, 47, 0.08);
  color: var(--green);
  cursor: pointer;
  padding: 0 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.featured .card-link,
.dark .card-link {
  background: rgba(255, 250, 242, 0.92);
  color: var(--green);
}

.catalog {
  background:
    linear-gradient(180deg, rgba(16, 60, 47, 0.04), transparent),
    linear-gradient(90deg, rgba(201, 150, 69, 0.08), transparent 45%);
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1.52fr);
  gap: 24px;
  align-items: start;
  max-width: 1328px;
  margin: 0 auto;
}

.catalog-visual {
  position: relative;
  width: 100%;
}

.catalog-visual img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 18px 44px rgba(16, 60, 47, 0.12);
  object-fit: cover;
}

.catalog-caption {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.catalog-caption span {
  border: 1px solid rgba(16, 60, 47, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.64);
  color: rgba(31, 36, 32, 0.62);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.catalog-content {
  min-width: 0;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tab {
  min-height: 42px;
  border: 1px solid rgba(16, 60, 47, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.66);
  color: rgba(31, 36, 32, 0.66);
  cursor: pointer;
  padding: 0 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
}

.tab.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--milk-2);
}

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

.product-card {
  display: flex;
  min-height: 262px;
  flex-direction: column;
  border: 1px solid rgba(16, 60, 47, 0.12);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 250, 242, 0.82);
  padding: 24px;
  box-shadow: 0 16px 38px rgba(16, 60, 47, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: rgba(16, 60, 47, 0.24);
  box-shadow: 0 24px 48px rgba(16, 60, 47, 0.1);
  transform: translateY(-2px);
}

.product-card.is-unavailable {
  opacity: 0.62;
}

.product-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.product-badge {
  border-color: rgba(201, 150, 69, 0.24);
  color: var(--wood);
}

.product-pack {
  color: rgba(31, 36, 32, 0.54);
}

.product-card h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 21px;
  line-height: 1.22;
}

.product-format {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-card p {
  margin-bottom: 22px;
  color: rgba(31, 36, 32, 0.66);
  font-size: 14px;
  line-height: 1.62;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.product-price {
  color: var(--green);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
}

.product-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  background: rgba(16, 60, 47, 0.08);
  color: var(--green);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.product-order--disabled,
.product-order:disabled {
  cursor: not-allowed;
  border: 1px solid rgba(31, 36, 32, 0.14);
  background: rgba(31, 36, 32, 0.08);
  color: rgba(31, 36, 32, 0.52);
  box-shadow: none;
}

.product-order--disabled:hover,
.product-order:disabled:hover {
  transform: none;
}

.preview-banner {
  position: fixed;
  z-index: 120;
  top: 86px;
  right: 16px;
  border: 1px solid rgba(197, 150, 69, 0.32);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.94);
  color: var(--green);
  box-shadow: 0 16px 40px rgba(16, 60, 47, 0.12);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(201, 150, 69, 0.14), transparent 28rem),
    linear-gradient(135deg, rgba(8, 35, 26, 0.98), rgba(16, 60, 47, 0.94));
  color: var(--milk-2);
}

.why::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 35, 26, 0.98) 0 46%, rgba(8, 35, 26, 0.74)),
    url("assets/hero-product.png") right center / auto 112% no-repeat;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.why-inner {
  position: relative;
  max-width: 1328px;
  margin: 0 auto;
}

.section-head.light h2,
.section-head.light p {
  color: var(--milk-2);
}

.why-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.68fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 26px;
}

.why-head p:not(.section-note) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 250, 242, 0.7);
}

.why-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.why-proof span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.06);
  color: rgba(255, 250, 242, 0.72);
  padding: 0 13px;
  font-size: 12px;
  font-weight: 850;
}

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

.benefit {
  min-height: 204px;
  border: 1px solid rgba(255, 250, 242, 0.13);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.035)),
    rgba(9, 41, 31, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.08);
  padding: clamp(22px, 2.2vw, 30px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.benefit:hover {
  border-color: rgba(201, 150, 69, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.1), rgba(255, 250, 242, 0.045)),
    rgba(9, 41, 31, 0.84);
  transform: translateY(-2px);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.06);
  color: var(--honey);
  font-size: 12px;
  font-weight: 900;
}

.benefit h3 {
  margin-bottom: 12px;
  color: var(--milk-2);
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.06;
}

.benefit p {
  margin: 0;
  color: rgba(255, 250, 242, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1328px;
  margin: 0 auto;
}

.step {
  min-height: 196px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 250, 242, 0.74);
  padding: 28px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--milk-2);
  font-weight: 800;
}

.step h3 {
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
}

.step p {
  margin: 0;
  color: rgba(31, 36, 32, 0.66);
  line-height: 1.6;
}

.delivery-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1328px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.78)),
    url("assets/hero-product.png") right center / 48% auto no-repeat;
  padding: clamp(30px, 5vw, 60px);
  box-shadow: var(--shadow);
}

.delivery-card div {
  max-width: 660px;
}

.manager-contact {
  padding-top: 0;
}

.manager-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1328px;
  margin: 0 auto;
  border: 1px solid rgba(16, 60, 47, 0.12);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 250, 242, 0.68);
  padding: clamp(26px, 4vw, 46px);
  box-shadow: 0 18px 46px rgba(16, 60, 47, 0.07);
}

.manager-panel div {
  max-width: 720px;
}

.manager-panel h2 {
  margin-bottom: 12px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1;
}

.manager-panel p:not(.section-note) {
  margin: 0;
  color: rgba(31, 36, 32, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.manager-link,
.manager-socials {
  flex: 0 0 auto;
}

.manager-socials {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.manager-icon-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.manager-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(16, 60, 47, 0.14);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: 0 14px 32px rgba(16, 60, 47, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.manager-icon-link:hover {
  border-color: rgba(16, 60, 47, 0.32);
  background: rgba(255, 250, 242, 0.94);
  transform: translateY(-2px);
}

.manager-icon-link img {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  object-fit: contain;
}

.social-status {
  max-width: 300px;
  margin: 0;
  color: rgba(31, 36, 32, 0.54);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  text-align: right;
}

.review-gallery {
  column-count: 3;
  column-gap: 18px;
  max-width: 1328px;
  margin: 0 auto;
}

.review-card {
  display: block;
  overflow: hidden;
  margin: 0 0 18px;
  border: 1px solid rgba(16, 60, 47, 0.12);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(8, 35, 26, 0.94);
  box-shadow: 0 20px 58px rgba(16, 60, 47, 0.12);
  break-inside: avoid;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.review-card:hover {
  box-shadow: 0 26px 70px rgba(16, 60, 47, 0.18);
  transform: translateY(-2px);
}

.review-card img {
  display: block;
  width: 100%;
  height: auto;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.84fr);
  align-items: stretch;
  max-width: 1328px;
  margin: 0 auto;
}

.about-text {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  border-radius: calc(var(--radius) + 8px) 0 0 calc(var(--radius) + 8px);
  background: var(--green);
  color: var(--milk-2);
  padding: clamp(34px, 5vw, 64px);
}

.about-text h2,
.about-text p {
  color: var(--milk-2);
}

.about-text p:not(.section-note) {
  color: rgba(255, 250, 242, 0.76);
}

.about-photo {
  min-height: 520px;
  border-radius: 0 calc(var(--radius) + 8px) calc(var(--radius) + 8px) 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(8, 35, 26, 0.72)),
    url("assets/hero-product.png") 62% center / cover;
  box-shadow: var(--shadow);
}

.photo-inner {
  display: grid;
  height: 100%;
  place-items: end start;
  padding: 30px;
}

.photo-inner span {
  max-width: 300px;
  color: var(--milk-2);
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.faq {
  max-width: 1328px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px 18px;
}

.faq-item {
  border-top: 1px solid rgba(16, 60, 47, 0.12);
  padding: 20px 0;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: inline-grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-left: 18px;
  place-items: center;
  border: 1px solid rgba(16, 60, 47, 0.16);
  border-radius: 50%;
  color: var(--wood);
  content: "+";
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.faq-item[open] summary::after {
  background: rgba(201, 150, 69, 0.12);
  content: "-";
}

.faq-item p {
  max-width: 620px;
  margin: 14px 52px 0 0;
  color: rgba(31, 36, 32, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.final-cta {
  display: grid;
  justify-items: center;
  background:
    linear-gradient(135deg, rgba(9, 41, 31, 0.96), rgba(16, 60, 47, 0.9)),
    url("assets/hero-product.png") right center / auto 120% no-repeat;
  color: var(--milk-2);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 820px;
  color: var(--milk-2);
}

.final-cta p {
  margin-bottom: 28px;
  color: rgba(255, 250, 242, 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px 46px;
  padding: 42px clamp(18px, 4vw, 56px) 38px;
  border-top: 1px solid rgba(255, 250, 242, 0.08);
  background: #0b1713;
  color: rgba(255, 250, 242, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  color: rgba(255, 250, 242, 0.58);
  font-size: 14px;
}

.footer-socials {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-socials a,
.footer-legal-link {
  min-height: 30px;
  padding: 0 11px;
  font-size: 12px;
}

.footer-legal-link {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 800;
}

.footer-requisites {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
  border-top: 1px solid rgba(255, 250, 242, 0.08);
  padding-top: 18px;
  color: rgba(255, 250, 242, 0.46);
  font-size: 12px;
  line-height: 1.45;
}

.footer-requisites strong {
  color: rgba(255, 250, 242, 0.76);
}

.footer-requisites span {
  display: inline-flex;
  align-items: center;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 250, 242, 0.42);
  font-size: 12px;
  line-height: 1.6;
}

.mobile-sticky-cta {
  display: none;
}

.cart-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: flex;
  overflow: hidden;
  max-width: min(430px, calc(100vw - 44px));
  align-items: stretch;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(8, 35, 26, 0.98), rgba(16, 60, 47, 0.94)),
    radial-gradient(circle at 12% 0%, rgba(201, 150, 69, 0.2), transparent 12rem);
  color: var(--milk-2);
  box-shadow: 0 24px 60px rgba(8, 35, 26, 0.26);
}

.cart-dock__summary {
  display: inline-flex;
  min-width: 112px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  background: rgba(255, 250, 242, 0.09);
  color: inherit;
  cursor: pointer;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
}

.cart-dock__summary strong {
  display: inline-flex;
  min-width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--honey);
  color: var(--green-2);
}

.cart-dock__body {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 12px 12px 18px;
}

.cart-dock__body span {
  display: block;
  font-size: 14px;
  font-weight: 900;
}

.cart-dock__body small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 250, 242, 0.68);
  font-size: 12px;
}

.cart-dock__checkout {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--milk-2);
  color: var(--green);
  cursor: pointer;
  padding: 0 16px;
  font-family: var(--sans);
  font-weight: 900;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.order-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 35, 26, 0.48);
  backdrop-filter: blur(10px);
}

.age-gate,
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.age-gate.is-open,
.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.age-gate::before {
  position: absolute;
  inset: 0;
  background: rgba(8, 35, 26, 0.62);
  backdrop-filter: blur(12px);
  content: "";
}

.age-gate__panel,
.legal-dialog {
  position: relative;
  width: min(100%, 620px);
  border: 1px solid rgba(16, 60, 47, 0.14);
  border-radius: calc(var(--radius) + 10px);
  background: var(--milk-2);
  box-shadow: 0 26px 80px rgba(8, 35, 26, 0.3);
  padding: clamp(28px, 5vw, 46px);
}

.age-gate__panel h2,
.legal-dialog h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1;
}

.age-gate__panel p:not(.section-note),
.legal-content p {
  color: rgba(31, 36, 32, 0.68);
  line-height: 1.65;
}

.legal-content {
  display: grid;
  gap: 12px;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.legal-modal .order-modal__backdrop {
  z-index: 0;
}

.legal-dialog {
  z-index: 1;
  max-height: 88dvh;
  overflow: auto;
}

.legal-content h3 {
  margin: 16px 0 0;
  border-top: 1px solid rgba(16, 60, 47, 0.1);
  color: var(--green);
  padding-top: 18px;
  font-size: 18px;
}

.legal-content h3:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.legal-content p {
  margin: 0;
}

.legal-content strong {
  color: var(--green);
}

.order-dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: min(92dvh, 820px);
  overflow: auto;
  border: 1px solid rgba(16, 60, 47, 0.14);
  border-radius: calc(var(--radius) + 10px);
  background: var(--milk-2);
  box-shadow: 0 26px 80px rgba(8, 35, 26, 0.28);
  padding: clamp(26px, 4vw, 42px);
}

.order-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(16, 60, 47, 0.14);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.72);
  cursor: pointer;
}

.order-close::before,
.order-close::after {
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  content: "";
}

.order-close::before {
  transform: rotate(45deg);
}

.order-close::after {
  transform: rotate(-45deg);
}

.order-dialog h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  color: var(--green);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
}

.order-dialog__lead {
  margin-bottom: 22px;
  color: rgba(31, 36, 32, 0.68);
  line-height: 1.65;
}

.selected-order {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  border: 1px solid rgba(16, 60, 47, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16, 60, 47, 0.06), rgba(201, 150, 69, 0.08)),
    rgba(244, 238, 228, 0.58);
  padding: 18px;
}

.selected-order span {
  color: var(--wood);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-order strong {
  color: var(--green);
  font-size: 22px;
  line-height: 1.18;
}

.selected-order small {
  color: rgba(31, 36, 32, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.order-cart-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.order-cart-list p {
  margin: 0;
  color: rgba(31, 36, 32, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.order-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(16, 60, 47, 0.1);
  padding-top: 10px;
}

.order-cart-item strong {
  display: block;
  color: var(--green);
  font-size: 15px;
}

.order-cart-item small {
  display: block;
  margin-top: 4px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-qty button {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(16, 60, 47, 0.16);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.78);
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.cart-qty span {
  min-width: 18px;
  text-align: center;
  font-weight: 900;
}

.order-form {
  display: grid;
  gap: 14px;
}

.order-form label {
  display: grid;
  gap: 7px;
}

.order-form .legal-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(16, 60, 47, 0.12);
  border-radius: 14px;
  background: rgba(244, 238, 228, 0.54);
  padding: 12px;
}

.legal-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.legal-check button {
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  padding: 0;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-form label span {
  color: rgba(31, 36, 32, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 60, 47, 0.16);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.82);
  color: var(--graphite);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: rgba(16, 60, 47, 0.44);
  box-shadow: 0 0 0 4px rgba(16, 60, 47, 0.08);
}

.order-form .legal-check input {
  width: 18px;
  height: 18px;
  padding: 0;
}

.order-form textarea {
  resize: vertical;
}

.form-hint,
.form-status {
  margin: 0;
  color: rgba(31, 36, 32, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.form-status {
  min-height: 20px;
  color: var(--green);
  font-weight: 800;
}

.form-status.is-error {
  color: #8a3325;
}

.order-form .btn {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 1180px) {
  .sets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .set-card,
  .set-card.wide {
    grid-column: auto;
  }

  .set-card.dark {
    grid-column: span 2;
  }

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 250, 242, 0.76);
  }

  .menu-toggle span {
    grid-area: 1 / 1;
    display: block;
    width: 19px;
    height: 2px;
    background: var(--green);
  }

  .menu-toggle span:first-child {
    transform: translateY(-6px);
  }

  .menu-toggle span:last-child {
    transform: translateY(6px);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .site-header.menu-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .site-header.menu-open .main-nav a {
    border-top: 1px solid rgba(16, 60, 47, 0.08);
    padding: 14px 0;
  }

  .hero,
  .catalog-layout,
  .about {
    grid-template-columns: 1fr;
  }

  .why-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-top: 56px;
  }

  .hero::before {
    width: min(70vw, 420px);
  }

  .hero-copy {
    max-width: 760px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-media {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .hero-media img {
    height: auto;
    min-height: 340px;
    max-height: 480px;
    aspect-ratio: 1.22;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .review-gallery {
    column-count: 2;
  }

  .about-text {
    min-height: auto;
    border-radius: calc(var(--radius) + 8px) calc(var(--radius) + 8px) 0 0;
  }

  .about-photo {
    min-height: 420px;
    border-radius: 0 0 calc(var(--radius) + 8px) calc(var(--radius) + 8px);
  }

  .delivery-card {
    align-items: flex-start;
    flex-direction: column;
    background:
      linear-gradient(90deg, rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.86)),
      url("assets/hero-product.png") right bottom / 70% auto no-repeat;
  }

  .manager-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .manager-socials {
    width: 100%;
    justify-items: start;
  }

  .social-status {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 86px;
    scroll-padding-bottom: 84px;
  }

  body {
    padding-bottom: 92px;
  }

  .section-pad {
    padding: 58px 18px;
  }

  .hero {
    padding-top: 62px;
    gap: 42px;
  }

  .hero::before {
    top: 28px;
    left: 18px;
    width: 46vw;
  }

  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    font-size: 24px;
  }

  .brand small {
    font-size: 13px;
  }

  .header-socials {
    gap: 4px;
  }

  .header-social-btn {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }

  .header-social-btn svg {
    width: 17px;
    height: 17px;
  }

  .header-social-btn img {
    width: 23px;
    height: 23px;
  }

  .contact-popover {
    right: 0;
    width: min(310px, calc(100vw - 36px));
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(48px, 14vw, 66px);
    line-height: 0.94;
  }

  .hero-subline {
    margin-top: 16px;
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero p:not(.hero-kicker) {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .hero-actions,
  .btn,
  .header-cta {
    width: 100%;
  }

  .hero-media img {
    height: auto;
    min-height: 360px;
    aspect-ratio: 0.96;
    border-radius: calc(var(--radius) + 8px);
  }

  .hero-media-note {
    right: 14px;
    bottom: 14px;
    min-width: 0;
    max-width: calc(100% - 28px);
    padding: 13px 14px;
  }

  .hero-badges {
    gap: 8px;
  }

  .sets-grid,
  .product-grid,
  .benefit-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .review-gallery {
    column-count: 1;
  }

  .set-card.dark {
    grid-column: auto;
  }

  .set-footer,
  .product-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tab {
    padding: 0 10px;
  }

  .catalog-caption {
    display: none;
  }

  .product-order {
    width: 100%;
  }

  .product-card,
  .set-card,
  .product-order,
  .card-link,
  .btn {
    scroll-margin-top: 92px;
    scroll-margin-bottom: 88px;
  }

  .about-photo {
    min-height: 340px;
  }

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

  .faq-item summary {
    font-size: 22px;
  }

  .faq-item p {
    margin-right: 0;
  }

  .footer-requisites {
    display: grid;
    gap: 8px;
  }

  .manager-link {
    width: 100%;
  }

  .hero-socials,
  .manager-socials .social-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    border-radius: calc(var(--radius) + 4px);
  }

  .hero-socials > span {
    grid-column: 1 / -1;
    padding-left: 0;
  }

  .social-link {
    width: 100%;
    min-height: 42px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .cart-dock {
    right: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    max-width: calc(100vw - 96px);
    border-radius: 999px;
  }

  .cart-dock__summary {
    min-width: 58px;
    padding: 10px;
  }

  .cart-dock__summary span {
    display: none;
  }

  .cart-dock__body {
    gap: 10px;
    min-width: 0;
    padding: 9px 10px 9px 12px;
  }

  .cart-dock__body div {
    min-width: 0;
  }

  .cart-dock__body span,
  .cart-dock__body small {
    overflow: hidden;
    max-width: 142px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cart-dock__checkout {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: auto;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 0;
    min-height: 0;
    border: 1px solid rgba(255, 250, 242, 0.66);
    border-radius: 50%;
    background:
      radial-gradient(circle at 34% 26%, rgba(255, 250, 242, 0.2), transparent 32%),
      linear-gradient(145deg, #164d3d, #0c3328 74%);
    color: var(--milk-2);
    padding: 0;
    box-shadow:
      0 18px 38px rgba(16, 60, 47, 0.28),
      inset 0 1px 0 rgba(255, 250, 242, 0.22);
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .mobile-sticky-cta:active {
    transform: translateY(1px) scale(0.98);
    box-shadow:
      0 12px 28px rgba(16, 60, 47, 0.24),
      inset 0 1px 0 rgba(255, 250, 242, 0.2);
  }

  .mobile-sticky-cta__icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
  }

  .mobile-sticky-cta__icon::before,
  .mobile-sticky-cta__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
  }

  .mobile-sticky-cta__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .order-modal {
    align-items: end;
    padding: 12px;
  }

  .order-dialog {
    width: 100%;
    max-height: 88dvh;
    border-radius: calc(var(--radius) + 8px) calc(var(--radius) + 8px) 18px 18px;
    padding: 26px 18px 20px;
  }
}
