:root {
  --bg: #e4e2dc;
  --bg-deep: #d2cfc7;
  --ink: #14161a;
  --muted: #5c616a;
  --line: rgba(20, 22, 26, 0.12);
  --surface: #f2f0eb;
  --accent: #2a3d52;
  --warm: #b86f3c;
  --white: #f7f6f2;
  --hero-panel: #eceae4;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(42, 61, 82, 0.07), transparent 55%),
    radial-gradient(700px 400px at 100% 5%, rgba(184, 111, 60, 0.06), transparent 50%),
    linear-gradient(180deg, #ebe9e3 0%, var(--bg) 45%, #d8d5ce 100%);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  transition: background 0.35s var(--ease), border-color 0.35s;
  color: var(--ink);
}
.nav.is-solid {
  background: rgba(242, 240, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}
.nav__brand span {
  font-size: 0.55em;
  letter-spacing: 0.14em;
  font-weight: 600;
  opacity: 0.65;
}
.nav__links {
  display: none;
  gap: 1.75rem;
  list-style: none;
  font-size: 0.9rem;
}
.nav__links a { opacity: 0.85; transition: opacity 0.2s; }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.05rem;
  background: var(--ink);
  color: var(--white);
  transition: background 0.25s;
}
.nav__cta:hover { background: var(--accent); }
.nav__menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
  padding: 0.35rem;
}
.nav__menu span {
  display: block;
  height: 1.5px;
  background: currentColor;
}
@media (min-width: 800px) {
  .nav { padding: 1.35rem 2.25rem; }
  .nav__links { display: flex; }
  .nav__menu { display: none; }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--surface);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.drawer.is-open { transform: none; }
.drawer__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(42vh, 1fr);
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(20rem, 0.92fr) 1.18fr;
    grid-template-rows: 1fr;
  }
}
.hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6.5rem 1.5rem 3rem;
  color: var(--ink);
  background:
    linear-gradient(160deg, #f4f2ec 0%, var(--hero-panel) 48%, #e2dfd7 100%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 11px,
      rgba(20, 22, 26, 0.015) 11px,
      rgba(20, 22, 26, 0.015) 12px
    );
}
@media (min-width: 900px) {
  .hero__copy {
    padding: 7rem 3rem 4.5rem 2.75rem;
    justify-content: center;
  }
}
.hero__copy::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  bottom: 0;
  width: 3.5rem;
  height: 3px;
  background: var(--warm);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.7s forwards;
}
@media (min-width: 900px) {
  .hero__copy::after { left: 2.75rem; }
}
.hero__media {
  position: relative;
  min-height: 42vh;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__media img {
  transform: scale(1.06) translateX(2%);
  animation: heroSlide 18s var(--ease) forwards;
}
@keyframes heroSlide {
  to { transform: scale(1) translateX(0); }
}
.hero__brand {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 7.5vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25em 0.4em;
  opacity: 0;
  animation: rise 1s var(--ease) 0.1s forwards;
}
.hero__brand span {
  font-size: 0.34em;
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 0.55;
}
.hero__headline {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 500;
  max-width: 16ch;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.26s forwards;
}
.hero__text {
  max-width: 34ch;
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.4s forwards;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.52s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.3rem;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.btn:hover { transform: translateY(-1px); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--accent); }
.btn--line {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn--line:hover { background: var(--ink); color: var(--white); }

.section {
  width: min(100% - 3rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section { padding: 6.5rem 0; }
}
.section__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.section__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 0.8rem;
}
.section__lead {
  color: var(--muted);
  max-width: 40ch;
  font-weight: 300;
  font-size: 1.05rem;
}

.about__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 860px) {
  .about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: end;
  }
}
.about__facts {
  list-style: none;
  border-top: 1px solid var(--line);
}
.about__facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.about__facts strong {
  font-weight: 500;
  color: var(--muted);
}
.about__facts a:hover { color: var(--accent); }

.offer .section__title { max-width: 16ch; }
.offer__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px) {
  .offer__grid { grid-template-columns: repeat(3, 1fr); }
}
.offer__card {
  padding: 1.6rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
}
.offer__card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}
.offer__card p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}

.catalog__head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 800px) {
  .catalog__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .catalog__head .section__lead { justify-self: end; text-align: right; }
}
.catalog__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
}
.cat__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
  margin-bottom: 0.9rem;
}
.cat__media img { transition: transform 1s var(--ease); }
.cat:hover .cat__media img { transform: scale(1.04); }
.cat h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.cat p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}

.contact {
  text-align: center;
}
.contact .section__title {
  max-width: none;
  margin-inline: auto;
}
.contact .section__lead {
  margin: 0 auto 2rem;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 1.5rem 2rem;
}
.footer__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 700px) {
  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
  }
}
.footer__brand {
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 0.55rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}
.footer__brand span {
  font-size: 0.5em;
  letter-spacing: 0.16em;
  opacity: 0.7;
}
.footer p,
.footer a,
.footer li {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}
.footer h3 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}
.footer ul { list-style: none; display: grid; gap: 0.4rem; }
.footer a:hover { color: var(--ink); }
.footer__bottom {
  width: min(100%, var(--max));
  margin: 2.25rem auto 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
