:root {
  --paper: #f7f6f2;
  --paper-2: #ebe5da;
  --ink: #241b16;
  --ink-soft: #5f5147;
  --muted: #7a6c61;
  --line: rgba(82, 65, 52, 0.18);
  --dark: #1f1915;
  --dark-2: #342920;
  --gold: #c8933f;
  --copper: #9d5d38;
  --sage: #697766;
  --white: #fffdfa;
  --shadow: 0 26px 70px rgba(36, 27, 22, 0.16);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.58;
}

body::selection {
  background: var(--gold);
  color: var(--dark);
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(22px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 239, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.72);
  background: rgba(255, 253, 248, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark::after {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 253, 248, 0.32);
  content: "";
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(36, 27, 22, 0.62);
  background: rgba(36, 27, 22, 0.04);
}

.site-header.is-scrolled .brand-mark::after {
  border-color: rgba(36, 27, 22, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-family: "Segoe UI", Arial, sans-serif;
  margin-top: 2px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  opacity: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.site-nav a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--gold);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 15, 10, 0.88) 0%, rgba(23, 15, 10, 0.68) 38%, rgba(23, 15, 10, 0.12) 100%),
    linear-gradient(0deg, rgba(23, 15, 10, 0.45), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 44px));
  margin-left: max(22px, calc((100vw - var(--container)) / 2));
  align-self: center;
  padding-top: 96px;
  padding-bottom: 120px;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 22px;
  font-size: 92px;
  line-height: 0.9;
  font-weight: 500;
  color: inherit;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

h2 {
  margin-bottom: 20px;
  font-size: 52px;
  line-height: 1;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 22px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.button-primary {
  background: var(--gold);
  color: var(--dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e1ae5e;
}

.button-ghost {
  border-color: currentColor;
  color: currentColor;
  background: rgba(255, 253, 248, 0.05);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 253, 248, 0.14);
}

.company-data span {
  display: block;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-data strong {
  display: block;
  margin-top: 8px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
}

.section {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 104px 0;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: end;
}

.intro-text p,
.section-heading p,
.company-copy p,
.contact-inner p {
  color: var(--ink-soft);
  font-size: 19px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 42px;
}

.assortment {
  border-top: 1px solid var(--line);
}

.assortment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 54px;
  align-items: stretch;
}

.assortment-list {
  display: grid;
  align-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
}

.assortment-list article {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.assortment-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--copper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.assortment-list p,
.steps p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.image-block,
.wide-image {
  margin: 0;
  min-height: 460px;
  overflow: hidden;
  background: var(--paper-2);
}

.image-block img,
.wide-image img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.cooperation {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.steps strong {
  color: var(--ink);
}

.company {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  gap: 60px;
  border-top: 1px solid var(--line);
}

.company-data {
  display: grid;
  align-self: start;
  background: var(--dark);
  color: var(--white);
}

.company-data div {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.company-data div:last-child {
  border-bottom: 0;
}

.company-data span {
  color: rgba(255, 253, 248, 0.62);
}

.contact-band {
  margin-top: 20px;
  padding: 104px 22px;
  background: var(--dark);
  color: var(--white);
}

.contact-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  margin-right: auto;
  margin-left: auto;
}

.contact-inner p {
  color: rgba(255, 253, 248, 0.72);
}

.contact-actions {
  justify-content: center;
  margin: 34px 0 28px;
}

address {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 253, 248, 0.72);
  font-style: normal;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px max(22px, calc((100vw - var(--container)) / 2));
  background: #17110e;
  color: rgba(255, 253, 248, 0.74);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.error-shell {
  width: min(620px, calc(100% - 40px));
  padding: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 42px;
  }

  .intro-section,
  .assortment-layout,
  .cooperation,
  .company {
    grid-template-columns: 1fr;
  }

  .image-block,
  .wide-image {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 22px;
    top: calc(100% + 8px);
    display: none;
    width: min(280px, calc(100vw - 44px));
    padding: 10px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    padding-top: 130px;
    padding-bottom: 86px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .section {
    padding: 72px 0;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
