:root {
  --ink: #171717;
  --muted: #62615d;
  --paper: #f7f5f0;
  --surface: #ffffff;
  --line: #ded9cf;
  --brand: #b51224;
  --brand-dark: #7d0d18;
  --gold: #b49a62;
  --sage: #768573;
  --charcoal: #262626;
  --shadow: 0 18px 48px rgba(20, 20, 20, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

.topbar {
  background: var(--ink);
  color: #f5f1ea;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.topbar .wrap,
.site-header .wrap,
.section,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.topbar .wrap {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-lockup img {
  width: 52px;
  height: 52px;
  padding: 4px;
  border-radius: var(--radius);
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}

.brand-lockup span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #343330;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.lang-switcher a::after {
  display: none;
}

.lang-switcher a:hover,
.lang-switcher a:focus-visible,
.lang-switcher .is-active {
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(181, 18, 36, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-dark);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-quiet {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.94), rgba(13, 13, 13, 0.86) 42%, rgba(13, 13, 13, 0.35) 70%, rgba(13, 13, 13, 0.08)),
    url("assets/images/BG-2574LA.jpg") right center / 60% auto no-repeat,
    #f7f5f0;
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 96px 0 62px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.hero-copy {
  max-width: 760px;
  margin-top: 22px;
  color: #f2eee7;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 880px;
  margin-top: 48px;
}

.proof-item {
  min-height: 106px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.54);
}

.proof-item strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: #e8e0d2;
  font-size: 0.9rem;
}

.section {
  padding: 82px 0;
}

.section.compact {
  padding: 56px 0;
}

.section-kicker {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.section-head p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}

.fact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.fact-list strong {
  color: var(--brand);
  font-size: 1.25rem;
}

.product-grid,
.market-grid,
.answer-grid,
.process-grid,
.faq-grid,
.category-grid,
.model-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

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

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

.product-card,
.category-card,
.model-card,
.market-card,
.answer-card,
.process-card,
.faq-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-card {
  overflow: hidden;
}

.category-card,
.model-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f3f3f3;
}

.category-card img,
.model-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f3f3f3;
}

.model-media {
  display: block;
}

.product-card div,
.category-card div,
.model-card div,
.market-card,
.answer-card,
.process-card,
.faq-item {
  padding: 20px;
}

.product-card h3,
.category-card h3,
.model-card h3,
.market-card h3,
.answer-card h3,
.process-card h3,
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.product-card p,
.category-card p,
.model-card p,
.market-card p,
.answer-card p,
.process-card p,
.faq-item p {
  color: var(--muted);
  font-size: 0.96rem;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.category-nav a:hover,
.category-nav a:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.catalog-section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.catalog-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
}

.catalog-count {
  color: var(--brand);
  font-weight: 900;
}

.model-code {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.model-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.model-meta span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
}

.tagline {
  color: var(--sage);
  font-weight: 800;
}

.card-action {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 900;
}

.social-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.social-strip h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.social-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.social-links a:first-child {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

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

.color-chart {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-hero {
  background: var(--charcoal);
  color: #fff;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 32px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 74px;
}

.detail-copy p {
  max-width: 720px;
  margin-top: 20px;
  color: #e7ded2;
  font-size: 1.12rem;
}

.detail-copy h1 {
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
}

.detail-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #fff;
}

.detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 22px;
}

.spec-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.spec-panel h2 {
  margin: 8px 0 18px;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-weight: 900;
}

.spec-list dd {
  margin: 0;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.check-list li {
  color: var(--muted);
  font-weight: 700;
}

.factory-proof-section {
  border-top: 1px solid var(--line);
}

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

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

.factory-proof-grid.catalogue-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 18px;
}

.proof-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.proof-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.proof-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.platform-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.dark-band {
  background: var(--charcoal);
  color: #f7f1e8;
}

.dark-band .section-head p,
.dark-band .process-card p {
  color: #d9d1c5;
}

.dark-band .process-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.lead-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.62fr);
  gap: 28px;
  align-items: start;
}

.contact-panel {
  padding: 24px;
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: #3a3935;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c9c2b7;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.page-hero {
  background: var(--charcoal);
  color: #fff;
}

.page-hero .section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.page-hero p {
  max-width: 780px;
  margin-top: 20px;
  color: #e3d9cd;
  font-size: 1.12rem;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.content-flow {
  max-width: 910px;
}

.content-flow h2 {
  margin: 40px 0 14px;
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
}

.content-flow h3 {
  margin: 30px 0 10px;
  font-size: 1.25rem;
}

.content-flow ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.cta-strip {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
}

.cta-strip p {
  color: #fbeef0;
}

.site-footer {
  background: #111;
  color: #eee9df;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(160px, 0.45fr));
  gap: 28px;
  padding: 48px 0;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer a,
.site-footer p {
  display: block;
  color: #cfc6b8;
  margin: 0 0 8px;
}

.subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a8a096;
  font-size: 0.88rem;
}

.subfooter .footer-inner {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .brand-lockup,
html[dir="rtl"] .topbar .wrap,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .social-links,
html[dir="rtl"] .footer-socials,
html[dir="rtl"] .platform-link-row,
html[dir="rtl"] .category-nav,
html[dir="rtl"] .model-meta {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav a::after {
  transform-origin: right;
}

html[dir="rtl"] .eyebrow::before {
  order: 2;
}

html[dir="rtl"] .check-list,
html[dir="rtl"] .content-flow ul {
  padding-right: 20px;
  padding-left: 0;
}

html[dir="rtl"] .spec-list dd {
  text-align: right;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 10px 4px;
  }

  .lang-switcher {
    justify-content: center;
    width: 100%;
    margin: 4px 0;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.78)),
      url("assets/images/BG-2574LA.jpg") center bottom / cover no-repeat,
      #191919;
  }

  .hero-inner {
    padding: 80px 0 44px;
  }

  .hero-proof,
  .product-grid,
  .market-grid,
  .answer-grid,
  .process-grid,
  .faq-grid,
  .category-grid,
  .model-grid,
  .detail-layout,
  .detail-grid,
  .social-strip,
  .factory-proof-grid,
  .factory-proof-grid.catalogue-proof,
  .section-head,
  .split,
  .quote-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    max-width: none;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .detail-layout {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .social-links a {
    flex: 1 1 130px;
    justify-content: center;
  }

  .topbar .wrap,
  .subfooter .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .brand-lockup strong {
    max-width: 176px;
  }

  .section {
    padding: 58px 0;
  }

  .proof-item {
    min-height: 92px;
  }

  .cta-strip {
    padding: 24px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .social-strip,
  .spec-panel {
    padding: 20px;
  }
}
