:root {
  --bg: #000;
  --panel: #121212;
  --footer: #242424;
  --line: #2a2a2a;
  --text: #f7f7f7;
  --muted: #cfcfcf;
  --soft: #a9a9a9;
  --accent: #c48f56;
  --accent-dark: #9d6c35;
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 36px 0 26px;
  background: #000;
}

.home .site-header {
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
}

.header-inner {
  width: min(1620px, calc(100% - 112px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  width: 150px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 160ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: translateX(-50%) scale(.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .nav-toggle span {
  opacity: 0;
}

.menu-open .nav-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .nav-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  overflow: hidden;
  background: #050505;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: 0 24px 120px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-slide::before {
  background: inherit;
  filter: brightness(.82);
  transform: scale(1.02);
}

.hero-slide::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .1) 46%, rgba(0, 0, 0, .76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .02) 48%, rgba(0, 0, 0, .52) 100%);
}

.hero-title {
  position: relative;
  z-index: 2;
  width: min(1160px, 92vw);
  margin: 0;
  color: #fff;
  font-size: clamp(31px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.hero-social {
  position: absolute;
  z-index: 3;
  left: 32px;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transform: translateY(-50%);
}

.hero-social a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #eee;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: lowercase;
}

.hero-social a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 36px;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-50%);
}

.hero-dots button {
  position: relative;
  border: 0;
  background: transparent;
  color: #fff;
  font: 700 13px/1 "Montserrat", Arial, sans-serif;
  cursor: pointer;
}

.hero-dots button::before {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .45);
  opacity: 0;
  transform: translateY(-50%);
}

.hero-dots button.active {
  color: var(--accent);
}

.hero-dots button.active::before {
  opacity: 1;
}

.hero-arrows {
  position: absolute;
  z-index: 4;
  right: 44px;
  bottom: 88px;
  display: flex;
  gap: 16px;
}

.hero-arrows button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: .84;
}

.section {
  padding: 72px 0;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--panel);
}

.split-block + .split-block {
  margin-top: 72px;
}

.split-media {
  min-height: 520px;
  background: #111 center / cover no-repeat;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: clamp(42px, 5.2vw, 86px);
}

.split-content p {
  margin: 0 0 22px;
  color: var(--muted);
}

.split-content .lead {
  color: #fff;
  font-size: 18px;
  line-height: 1.58;
}

.section-title {
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
}

.section-title span {
  color: var(--accent);
}

.title-line {
  width: 28px;
  height: 1px;
  margin: 28px 0 36px;
  background: rgba(196, 143, 86, .78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link::after {
  content: ">";
  font-size: 15px;
  line-height: 1;
}

.products {
  padding: 72px 0 88px;
}

.products h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
}

.products h2 span {
  color: var(--accent);
}

.center-line {
  width: 28px;
  height: 1px;
  margin: 20px auto 44px;
  background: rgba(196, 143, 86, .78);
}

.mobile-only {
  display: none;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 36px;
}

.filter-bar button {
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0 0 4px;
  background: transparent;
  color: #fff;
  font: 600 13px/1 "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-bar button.active {
  color: var(--accent);
  border-color: var(--accent);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1.57 / 1;
  background: #191919;
}

.product-card[hidden] {
  display: none;
}

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

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .22);
  opacity: 0;
  transition: opacity 260ms ease;
}

.product-card:hover img {
  transform: scale(1.045);
  filter: contrast(1.04);
}

.product-card:hover::after {
  opacity: 1;
}

.brand-strip {
  padding: 28px 0 86px;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 44px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.brand-list img {
  width: 132px;
  height: auto;
  margin: 0 auto;
  opacity: .95;
}

.page-main {
  padding-top: 64px;
}

.about-page .section {
  padding-top: 40px;
}

.contact-page .page-main {
  padding-top: 82px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 54px;
}

.contact-copy > *,
.contact-item > * {
  min-width: 0;
}

.contact-copy p {
  margin: 0;
  color: #f1f1f1;
  font-size: 22px;
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: center;
  color: #e8e8e8;
  font-size: 22px;
  line-height: 1.5;
}

.contact-item a,
.contact-item span:last-child,
.contact-copy p {
  overflow-wrap: break-word;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 2px solid rgba(196, 143, 86, .86);
  border-radius: 50%;
  color: #f3f3f3;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.contact-form label {
  display: block;
  margin: 0 0 4px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  margin: 0 0 10px;
  padding: 9px 11px;
  background: #fff;
  color: #111;
  font: 500 16px/1.4 "Montserrat", Arial, sans-serif;
}

.contact-form input {
  height: 31px;
}

.contact-form textarea {
  min-height: 300px;
  resize: vertical;
}

.send-button {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 0;
  border-radius: 0;
  padding: 2px 10px;
  background: #e8e8e8;
  color: #555;
  font: 500 20px/1 "Montserrat", Arial, sans-serif;
  cursor: pointer;
}

.map-note {
  margin: 66px 0 28px;
  color: #f4f4f4;
  font-size: 22px;
  font-weight: 500;
}

.map-note a {
  text-decoration: underline;
}

.footer-social {
  display: grid;
  place-items: center;
  min-height: 74px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, .02);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f1f1f1;
  font-weight: 600;
  text-transform: lowercase;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.site-footer {
  position: relative;
  padding: 62px 0 74px;
  background: var(--footer);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 1fr;
  gap: 84px;
  align-items: start;
}

.footer-logo {
  width: 200px;
  margin-bottom: 42px;
}

.footer-title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.22;
}

.footer-line {
  width: 28px;
  height: 1px;
  margin: 28px 0 34px;
  background: var(--accent);
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  color: #e1e1e1;
  font-size: 17px;
}

.footer-contact span {
  display: inline-block;
  min-width: 78px;
  color: #fff;
  font-weight: 600;
}

.copyright {
  color: #d0d0d0;
  font-size: 15px;
}

.scroll-top {
  position: absolute;
  right: 72px;
  bottom: 54px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .58);
  background: transparent;
  color: #e6e6e6;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.scroll-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 1180px) {
  .header-inner {
    width: min(100% - 56px, var(--max));
  }

  .contact-layout,
  .contact-copy {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 46px;
  }

  .footer-grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .home .site-header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, .94);
  }

  .header-inner {
    width: calc(100% - 36px);
  }

  .brand img {
    width: 128px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 88px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(0, 0, 0, .98);
    border-top: 1px solid rgba(255, 255, 255, .08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav a {
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .main-nav a::after {
    left: auto;
    right: 12px;
    bottom: 50%;
    transform: translateY(50%) scale(.5);
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    transform: translateY(50%) scale(1);
  }

  .hero {
    min-height: 620px;
    height: calc(100vh - 88px);
  }

  .hero-slide {
    padding-bottom: 82px;
  }

  .hero-social,
  .hero-dots {
    display: none;
  }

  .hero-arrows {
    right: 24px;
    bottom: 28px;
  }

  .split-block,
  .split-block.reverse {
    grid-template-columns: 1fr;
  }

  .split-block.reverse .split-media {
    order: -1;
  }

  .split-media,
  .split-content {
    min-height: 420px;
  }

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

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

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

  .scroll-top {
    right: 28px;
    bottom: 28px;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 32px);
  }

  .site-header {
    padding: 20px 0;
  }

  .main-nav {
    inset: 76px 0 auto;
  }

  .hero {
    min-height: 540px;
  }

  .hero-title {
    position: absolute;
    left: 50%;
    bottom: 92px;
    width: calc(100vw - 32px);
    font-size: clamp(22px, 6vw, 28px);
    transform: translateX(-50%);
  }

  .mobile-only {
    display: block;
  }

  .section,
  .products {
    padding: 48px 0;
  }

  .split-block + .split-block {
    margin-top: 42px;
  }

  .split-media,
  .split-content {
    min-height: 340px;
  }

  .split-content {
    padding: 34px 24px;
  }

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

  .brand-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .contact-page .page-main {
    padding-top: 44px;
  }

  .contact-copy p,
  .contact-item,
  .contact-form label,
  .map-note {
    font-size: 16px;
  }

  .contact-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
  }

  .contact-icon {
    width: 58px;
    height: 58px;
  }

  .contact-form textarea {
    min-height: 220px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .footer-title {
    font-size: 26px;
  }
}
