:root {
  --bg: #ececec;
  --paper: #f7f7f7;
  --text: #272b31;
  --muted: #6d747c;
  --line: #d6d8db;
  --accent: #b89742;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 33%),
    radial-gradient(circle at 80% 84%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, #f4f4f4 0%, #e9e9e9 46%, #efefef 100%);
  overflow-x: hidden;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 68px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem;
  background: rgba(250, 250, 250, 0.95);
  border-bottom: 1px solid rgba(214, 216, 219, 0.85);
  backdrop-filter: blur(8px);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: none;
  background: transparent;
  color: #3a3f46;
  font-family: "Oswald", sans-serif;
  font-size: 1.03rem;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.menu-line {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #b89742;
  box-shadow: 0 5px 0 #b89742, 0 -5px 0 #b89742;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.35rem, 2.05vw, 1.95rem);
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #b89742;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 2.2em;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
  flex-shrink: 0;
}

.brand-text {
  color: #b89742;
  line-height: 1;
}

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #24272b;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  border: none;
  background: rgba(28, 32, 37, 0.34);
  backdrop-filter: blur(2px);
}

.site-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, 88vw);
  height: 100vh;
  z-index: 50;
  padding: 88px 1.2rem 1.4rem;
  background: linear-gradient(180deg, rgba(251, 251, 251, 0.99) 0%, rgba(239, 239, 239, 0.98) 100%);
  border-right: 1px solid rgba(184, 151, 66, 0.35);
  box-shadow: 0 20px 45px rgba(22, 24, 27, 0.2);
  transform: translateX(-105%);
  transition: transform 0.35s ease;
}

.site-menu.open {
  transform: translateX(0);
}

.site-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-link {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 0.78rem 0.56rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  color: #28303a;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.menu-link:hover {
  color: #b89742;
  background: rgba(184, 151, 66, 0.08);
}

.menu-group {
  border-top: 1px solid rgba(183, 186, 190, 0.55);
  border-bottom: 1px solid rgba(183, 186, 190, 0.55);
  padding: 0.28rem 0;
}

.menu-toggle {
  position: relative;
}

.menu-toggle::after {
  content: "+";
  position: absolute;
  right: 0.56rem;
  top: 50%;
  transform: translateY(-50%);
  color: #b89742;
  font-size: 1.15rem;
}

.menu-toggle[aria-expanded="true"]::after {
  content: "-";
}

.submenu {
  display: grid;
  gap: 0.12rem;
  padding: 0.25rem 0 0.35rem 0.85rem;
}

.submenu[hidden] {
  display: none;
}

.submenu-link {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: #45505d;
  padding: 0.42rem 0.35rem;
  cursor: pointer;
  text-decoration: none;
}

.submenu-link:hover {
  color: #b89742;
}

.hero {
  position: relative;
  min-height: min(100vh, 900px);
  padding-top: 68px;
  overflow: hidden;
}

.slider {
  height: calc(100vh - 68px);
  min-height: 620px;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.28)) contrast(1.08) saturate(1.08);
  user-select: none;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.dot {
  width: 78px;
  height: 3px;
  border: none;
  background: rgba(203, 206, 211, 0.7);
  cursor: pointer;
  transition: background-color 0.35s ease;
}

.dot.active {
  background: var(--accent);
}

.catalog {
  padding: clamp(3.5rem, 8vw, 6.8rem) clamp(1.2rem, 3.5vw, 3.5rem) 5.5rem;
  background: var(--bg);
}

.catalog h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 1.15rem;
}

.catalog-list {
  width: min(1300px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.catalog-row {
  width: 100%;
  min-height: 180px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0.2rem;
  border: none;
  background: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}

.catalog-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 151, 66, 0), rgba(184, 151, 66, 0.5), rgba(184, 151, 66, 0));
}

.catalog-row:last-child::after {
  display: none;
}

.catalog-image-wrap {
  height: 165px;
  min-height: 165px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 0.25rem;
}

.catalog-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--product-scale, 1.08));
  transform-origin: center;
  filter: drop-shadow(0 15px 12px rgba(0, 0, 0, 0.2));
}

.catalog-name {
  font-family: "Oswald", sans-serif;
  text-align: center;
  letter-spacing: 0.14em;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  color: #222831;
}
.reveal-on-scroll {
  opacity: 0.08;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.catalog-list .catalog-row:nth-child(1) {
  transition-delay: 0s;
}

.catalog-list .catalog-row:nth-child(2) {
  transition-delay: 0.08s;
}

.catalog-list .catalog-row:nth-child(3) {
  transition-delay: 0.16s;
}

.catalog-list .catalog-row:nth-child(4) {
  transition-delay: 0.24s;
}

.catalog-list .catalog-row:nth-child(5) {
  transition-delay: 0.32s;
}

.catalog-list .catalog-row:nth-child(6) {
  transition-delay: 0.4s;
}

body.search-open {
  overflow: hidden;
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 24, 29, 0.52);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: start center;
  padding: 88px 1rem 1rem;
}

.site-search-overlay[hidden] {
  display: none !important;
}

.site-search-panel {
  width: min(760px, 100%);
  background: rgba(247, 247, 247, 0.98);
  border: 1px solid rgba(184, 151, 66, 0.35);
  box-shadow: 0 20px 40px rgba(15, 19, 24, 0.28);
  padding: 0.95rem;
}

.site-search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.site-search-header h3 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.site-search-close {
  border: 1px solid rgba(184, 151, 66, 0.4);
  background: rgba(184, 151, 66, 0.1);
  padding: 0.35rem 0.62rem;
  color: #2d3846;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.site-search-input {
  width: 100%;
  border: 1px solid rgba(130, 138, 147, 0.55);
  background: #fff;
  color: #222b35;
  padding: 0.74rem 0.78rem;
  font-size: 0.98rem;
}

.site-search-input:focus {
  outline: none;
  border-color: rgba(184, 151, 66, 0.85);
  box-shadow: 0 0 0 2px rgba(184, 151, 66, 0.18);
}

.site-search-results {
  list-style: none;
  margin-top: 0.72rem;
  max-height: min(58vh, 460px);
  overflow-y: auto;
  border: 1px solid rgba(214, 216, 219, 0.85);
  background: rgba(255, 255, 255, 0.88);
}

.site-search-item + .site-search-item {
  border-top: 1px solid rgba(219, 223, 227, 0.9);
}

.site-search-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: #222b35;
  padding: 0.62rem 0.74rem;
}

.site-search-link:hover {
  background: rgba(184, 151, 66, 0.14);
}

.site-search-link strong {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  color: #2a3543;
}

.site-search-link span {
  color: #5a6470;
  font-size: 0.9rem;
}

.site-search-empty {
  padding: 0.75rem;
  color: #59616c;
}

.home-signature {
  padding: clamp(2.4rem, 6vw, 4.4rem) clamp(1.2rem, 3.5vw, 3.5rem);
  background:
    radial-gradient(circle at 8% 8%, rgba(184, 151, 66, 0.12), rgba(184, 151, 66, 0) 36%),
    linear-gradient(180deg, #f5f6f8 0%, #eff2f5 100%);
}

.home-signature-head {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.home-signature-kicker {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8d6f2c;
  font-size: 0.82rem;
}

.home-signature-head h2 {
  margin-top: 0.35rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  color: #253241;
}

.home-signature-head p {
  margin-top: 0.6rem;
  color: #4b5664;
  line-height: 1.72;
  max-width: 90ch;
}

.home-signature-grid {
  width: min(1080px, 100%);
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-signature-card {
  border: 1px solid rgba(214, 218, 224, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 22px rgba(20, 24, 29, 0.07);
  padding: 0.82rem 0.9rem;
}

.home-signature-card h3 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  color: #293645;
  font-size: 0.95rem;
}

.home-signature-card p {
  margin-top: 0.42rem;
  color: #5b6674;
  line-height: 1.58;
  font-size: 0.9rem;
}

.home-cta-band {
  width: min(1080px, calc(100% - 2.4rem));
  margin: 1.4rem auto 2.4rem;
  border: 1px solid rgba(184, 151, 66, 0.45);
  background:
    radial-gradient(circle at 84% 12%, rgba(184, 151, 66, 0.2), rgba(184, 151, 66, 0) 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.9));
  box-shadow: 0 18px 34px rgba(16, 20, 26, 0.14);
  padding: clamp(1rem, 2.4vw, 1.45rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.95rem;
  align-items: center;
}

.home-cta-kicker {
  font-family: "Oswald", sans-serif;
  color: #8d6f2c;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.home-cta-band h2 {
  margin-top: 0.3rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  color: #283646;
}

.home-cta-band p {
  margin-top: 0.56rem;
  color: #505d6c;
  line-height: 1.66;
}

.home-cta-actions {
  display: grid;
  gap: 0.5rem;
}

.home-cta-btn {
  text-decoration: none;
  border: 1px solid #8d6f2c;
  background: linear-gradient(140deg, #b89742, #8d6f2c);
  color: #fff;
  padding: 0.58rem 0.72rem;
  text-align: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
}

.home-cta-btn--alt {
  background: linear-gradient(140deg, #3f4e61, #2a3543);
  border-color: #2a3543;
}

.home-cta-btn--ghost {
  background: rgba(255, 255, 255, 0.68);
  color: #2a3644;
  border-color: rgba(141, 111, 44, 0.45);
}

.site-footer {
  background: linear-gradient(180deg, #202831 0%, #1a212a 100%);
  color: #d6dde5;
  padding: 1.2rem clamp(1.2rem, 3.5vw, 3.5rem) 0.9rem;
  border-top: 1px solid rgba(184, 151, 66, 0.42);
}

.site-footer-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 0.8rem;
}

.site-footer h3,
.site-footer h4 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  color: #f3f6fa;
}

.site-footer h4 {
  font-size: 0.92rem;
}

.site-footer p {
  margin-top: 0.45rem;
  color: #b7c0cb;
  line-height: 1.62;
  font-size: 0.9rem;
}

.site-footer a {
  display: block;
  margin-top: 0.28rem;
  color: #ced5df;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: #e3c878;
}

.footer-dealer-link {
  display: inline-flex !important;
  margin-top: 0.7rem !important;
  border: 1px solid rgba(184, 151, 66, 0.55);
  background: rgba(184, 151, 66, 0.1);
  padding: 0.34rem 0.54rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.78rem !important;
  color: #e2c879 !important;
}

.footer-social {
  margin-top: 0.65rem;
  display: flex;
  gap: 0.45rem;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184, 151, 66, 0.5);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  cursor: default;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #d5dde6;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer-copy {
  width: min(1080px, 100%);
  margin: 0.9rem auto 0;
  padding-top: 0.66rem;
  border-top: 1px solid rgba(215, 220, 227, 0.18);
  color: #98a4b1;
  font-size: 0.82rem;
}

@media (max-width: 960px) {
  .slider {
    min-height: 520px;
  }

  .dot {
    width: 48px;
  }

  .catalog-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .catalog-image {
    transform: scale(var(--product-scale, 1.02));
    object-position: center;
  }

  .site-search-overlay {
    padding-top: 78px;
  }

  .home-signature-grid,
  .home-cta-band,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 0 0.8rem;
    height: 62px;
    position: fixed;
  }

  .menu-btn,
  .top-actions {
    position: relative;
    z-index: 2;
  }

  .menu-btn span:last-child {
    font-size: 0.94rem;
  }

  .brand {
    font-size: 1.04rem;
    gap: 0.24rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 138px;
  }

  .brand-logo {
    height: 2.05em;
    transform: none;
  }

  .brand-text {
    display: block;
    max-width: 74px;
    white-space: normal;
    line-height: 1.15 !important;
    letter-spacing: 0.03em;
    text-align: left;
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .hero {
    padding-top: 62px;
    min-height: unset;
  }

  .slider {
    height: calc(64vh - 62px);
    min-height: 330px;
  }

  .slide img {
    object-position: center 34%;
  }

  .slider-dots {
    bottom: 12px;
  }

  .top-actions {
    gap: 0.1rem;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .icon-btn svg {
    width: 20px;
    height: 20px;
  }

  .site-menu {
    width: min(330px, 92vw);
    padding-top: 78px;
  }

  .menu-link {
    font-size: 1.05rem;
  }
}
