:root {
  --white: #ffffff;
  --black: #111111;
  --gray: #f6f6f6;
  --accent: #c9a96e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header,
.footer {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 28px clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--white) 94%, transparent);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 700;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

.logo strong {
  display: block;
  white-space: nowrap;
}

.logo-copy {
  display: grid;
  gap: 2px;
}

.logo-copy small {
  display: block;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--black);
  border-radius: 12px;
  background: var(--white);
  place-items: center;
  cursor: pointer;
  transition: border-color 250ms ease, transform 250ms ease;
}

.menu-toggle:hover {
  border-color: var(--accent);
  transform: scale(1.02);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 3px 0;
  background: var(--black);
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav a,
.footer-links a,
.text-link {
  transition: color 250ms ease;
}

.nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  width: min(1440px, 100%);
  min-height: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px) 72px;
  display: grid;
  align-items: end;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 clamp(24px, 5vw, 72px) 72px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--white) 0%, color-mix(in srgb, var(--white) 94%, transparent) 32%, transparent 68%);
}

.hero-image {
  width: 100%;
  height: min(74vh, 760px);
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: absolute;
  left: clamp(48px, 8vw, 120px);
  bottom: clamp(86px, 13vh, 148px);
  z-index: 1;
  max-width: 500px;
  padding: 0;
  background: transparent;
  animation: blurReveal 900ms ease both;
}

.kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 22px;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 480px;
  font-size: clamp(58px, 6.2vw, 82px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-copy p:not(.kicker),
.section-head,
.benefit-grid p,
.review-grid p,
.product-info span {
  font-size: 16px;
}

.hero-copy p:not(.kicker) {
  max-width: 460px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--black);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  transition: transform 250ms ease, background-color 250ms ease, color 250ms ease, border-color 250ms ease;
}

.button:hover {
  transform: scale(1.02);
  border-color: var(--accent);
  color: var(--accent);
}

.button.primary {
  background: var(--black);
  color: var(--white);
}

.button.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.button.wide {
  min-width: 260px;
}

.section {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 112px clamp(24px, 5vw, 72px);
}

.section.muted {
  background: var(--gray);
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head.inline {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.text-link {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--black);
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.category {
  position: relative;
  grid-column: span 2;
  min-height: 360px;
  overflow: hidden;
  background: var(--gray);
}

.category.large {
  grid-column: span 3;
  min-height: 520px;
}

.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease, filter 250ms ease;
}

.category:hover img,
.product-card:hover img {
  transform: scale(1.02);
}

.category span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(16px);
  font-weight: 700;
}

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

.product-card {
  display: grid;
  gap: 26px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  background: var(--gray);
  transition: transform 250ms ease;
}

.product-info {
  display: grid;
  gap: 8px;
  align-items: start;
}

.product-info p {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-size: 22px;
}

.product-info strong {
  margin: 6px 0 10px;
  font-size: 18px;
}

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

.benefit-grid article,
.review-grid article {
  padding-top: 28px;
  border-top: 1px solid var(--black);
}

.icon-line {
  display: block;
  width: 36px;
  height: 1px;
  margin-bottom: 34px;
  background: var(--accent);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.order-intro {
  max-width: 560px;
}

.order-intro p:not(.kicker) {
  margin-bottom: 30px;
  font-size: 17px;
}

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

.steps article {
  min-height: 220px;
  padding: 32px;
  display: grid;
  align-content: space-between;
  background: var(--gray);
}

.steps span {
  color: var(--accent);
  font-weight: 800;
}

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

.order-steps article {
  position: relative;
  min-height: 176px;
  padding: 30px 34px 30px 88px;
  border-top: 1px solid var(--black);
  background: var(--white);
}

.order-steps article:last-child {
  border-bottom: 1px solid var(--black);
}

.order-steps article::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.order-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 62px;
  bottom: -12px;
  width: 1px;
  background: var(--accent);
}

.order-steps p {
  margin: 0;
  max-width: 420px;
  font-size: 15px;
}

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

.review-grid p {
  margin-bottom: 24px;
}

.telegram {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 128px clamp(24px, 5vw, 72px);
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.telegram h2 {
  max-width: 760px;
}

.footer {
  border-top: 1px solid var(--gray);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes blurReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: grid;
    position: relative;
    z-index: 12;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 24px;
    right: 24px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--gray);
    border-radius: 12px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 250ms ease, transform 250ms ease;
  }

  .nav a {
    padding: 16px 14px;
    border-radius: 10px;
  }

  .nav a:hover {
    background: var(--gray);
  }

  .menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    min-height: 520px;
    object-position: 60% center;
  }

  .hero-copy {
    left: 48px;
    right: 48px;
    max-width: 470px;
  }

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

  .order-section {
    grid-template-columns: 1fr;
  }

  .category,
  .category.large {
    grid-column: span 1;
    min-height: 380px;
  }

  .section-head.inline {
    display: block;
  }
}

@media (max-width: 640px) {
  .site-header,
  .footer {
    padding: 22px;
  }

  .logo-copy small {
    display: none;
  }

  .logo strong {
    font-size: 15px;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: auto;
    padding: 0 16px 72px;
    display: block;
  }

  .hero::after {
    inset: 0 16px 72px;
    background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--white) 92%, transparent) 58%, var(--white) 100%);
  }

  .hero-image {
    height: 560px;
    min-height: 560px;
    object-position: 68% center;
  }

  .hero-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -118px 18px 0;
    padding: 28px 22px 24px;
    border: 1px solid var(--gray);
    border-radius: 12px;
    background: color-mix(in srgb, var(--white) 94%, transparent);
    backdrop-filter: blur(18px);
  }

  h1 {
    font-size: 52px;
    line-height: 0.95;
  }

  .hero-copy p:not(.kicker) {
    max-width: none;
    margin-bottom: 22px;
  }

  h2 {
    font-size: 44px;
  }

  .section {
    padding: 84px 22px;
  }

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

  .order-steps article {
    min-height: 164px;
    padding: 28px 24px 28px 72px;
  }

  .order-steps article::before {
    left: 26px;
  }

  .order-steps article:not(:last-child)::after {
    left: 35px;
  }

  .category,
  .category.large {
    min-height: 340px;
  }

  .button {
    width: 100%;
  }

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

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
