:root {
  --primary: #1a1a2e;
  --navy: #16213e;
  --accent: #8b0000;
  --gold: #c9a227;
  --bg: #fafafa;
  --surface: #ffffff;
  --muted: #f5f5f5;
  --text: #333333;
  --subtle: #555555;
  --line: #e0e0e0;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --transition: all 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', 'Arial', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--primary);
  letter-spacing: -0.01em;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.muted {
  color: var(--subtle);
}

/* Topbar */
.topbar {
  display: none;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.topbar .contact-inline {
  display: flex;
  gap: 16px;
  align-items: center;
}

.topbar .contact-inline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar .top-cta {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
}

.topbar .top-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(26, 26, 46, 0.94);
  backdrop-filter: blur(12px);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 600;
  background: transparent;
  transition: var(--transition);
}

.lang-switch:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-nav {
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-nav:hover {
  background: #700000;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: #0f1024;
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background: #700000;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-text {
  background: none;
  padding: 0;
  color: var(--accent);
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(139, 0, 0, 0.08);
  color: var(--accent);
  font-weight: 600;
}

/* Hero */
.hero-wrapper {
  margin: 30px 0 60px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-content {
  padding: 56px;
  background: linear-gradient(135deg, #ffffff, #f5f5f7);
  position: relative;
}

.hero-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 18px;
}

.hero-desc {
  color: #444;
  font-size: 17px;
  margin-bottom: 28px;
}

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

.hero-media {
  position: relative;
  min-height: 320px;
  background: #0b0c1a;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 36, 0.65), rgba(14, 17, 36, 0.35));
}

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 240px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-badge strong {
  color: var(--primary);
}

/* Page hero */
.page-hero {
  position: relative;
  padding: 120px 0;
  color: #ffffff;
  overflow: hidden;
}

.page-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 14, 28, 0.8), rgba(12, 14, 28, 0.6));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 44px;
  margin-bottom: 14px;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #e5e7f0;
}

/* Section */
section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 28px;
}

.section-tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(139, 0, 0, 0.08);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.section-lead {
  max-width: 780px;
  color: var(--subtle);
}

/* Grids and cards */
.grid {
  display: grid;
  gap: 28px;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.three-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.four-col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  background: #edf2f7;
  color: var(--primary);
}

.badge.accent {
  background: rgba(139, 0, 0, 0.08);
  color: var(--accent);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  background: #0f1024;
  color: #ffffff;
  padding: 32px;
  border-radius: var(--radius);
  margin-top: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 30px;
  color: var(--gold);
}

/* Collections */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.collection-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.collection-card .media {
  position: relative;
  padding-top: 70%;
  background: var(--muted);
}

.collection-card .media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card .media .corner {
  position: absolute;
  top: 12px;
  left: 12px;
}

.collection-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.collection-card .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Process timeline */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.5), rgba(139, 0, 0, 0.35));
  z-index: 0;
}

.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.process-step .number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.process-step p {
  color: var(--subtle);
  font-size: 14px;
}

/* Feature list */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(22, 33, 62, 0.08);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 800;
}

.feature-card h3 {
  font-size: 18px;
}

.feature-card p {
  color: var(--subtle);
  font-size: 14px;
}

/* Scroll-in animation */
.card,
.collection-card,
.feature-card,
.process-step {
  opacity: 0;
  transform: translateY(12px);
}

.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Lists */
.checklist {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--subtle);
}

.checkmark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(201, 162, 39, 0.16);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 900;
}

/* Fabric grid */
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.fabric-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.fabric-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.fabric-card .body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--subtle);
}

/* Tables */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.spec-table th {
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
}

.spec-table tr:nth-child(even) td {
  background: #f7f7f9;
}

/* Contact */
.contact-panel {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 16px;
}

label {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.08);
}

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

/* FAQ */
.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.faq-question {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.faq-answer {
  color: var(--subtle);
}

/* Footer */
footer {
  background: #0c0d1c;
  color: #e5e7f0;
  padding: 60px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.footer-grid h4 {
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-grid a {
  color: #e5e7f0;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 38px;
  }

  nav {
    flex-wrap: wrap;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-content {
    padding: 28px;
  }

  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-band {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

/* RTL */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-badge {
  left: auto;
  right: 28px;
}

[dir="rtl"] .process-steps::before {
  left: 16px;
  right: 16px;
}

[dir="rtl"] .checklist li {
  justify-content: flex-end;
}

[dir="rtl"] .footer-bottom {
  justify-content: flex-start;
}
