:root {
  --bg: #0c0d0f;
  --bg-alt: #131519;
  --bg-card: #1a1d22;
  --line: #262a31;
  --text: #f2f3f5;
  --text-dim: #9aa1ab;
  --accent: #ff5a1f;
  --accent-dim: #ff5a1f33;
  --accent-2: #ffb703;
  --radius: 14px;
  --maxw: 1220px;
  --shadow: 0 20px 60px -20px rgba(0,0,0,.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  line-height: 1.12;
}

p { margin: 0 0 1em; color: var(--text-dim); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary { background: var(--accent); color: #100b08; }
.btn-primary:hover { transform: translateY(-2px); background: #ff6f3a; }
.btn-ghost { border-color: #ffffff3a; color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(12,13,15,.86);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 30px; width: auto; filter: invert(1) brightness(2); }
.brand span { font-family: 'Oswald', sans-serif; font-size: .74rem; letter-spacing: .16em; color: var(--text-dim); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: .86rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-family: 'Oswald', sans-serif; font-size: .8rem; letter-spacing: .05em; }
.lang-switch a { color: var(--text-dim); padding: 2px 4px; }
.lang-switch a.is-active { color: var(--text); font-weight: 600; }
.lang-switch a:hover { color: var(--accent); }
.lang-switch span { color: var(--line); }
.mobile-nav .lang-switch { font-size: 1.1rem; margin-top: -6px; }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 42px; height: 42px; color: var(--text); cursor: pointer;
  align-items: center; justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(7,8,9,.94) 0%, rgba(7,8,9,.8) 32%, rgba(7,8,9,.55) 55%, rgba(7,8,9,.68) 100%),
    linear-gradient(180deg, rgba(7,8,9,.15) 0%, rgba(7,8,9,.55) 65%, var(--bg) 100%),
    url('../img/hero-bg.jpg') no-repeat center 58% / cover;
  padding-top: 140px;
}
.hero-watermark {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 32%;
  max-width: 480px;
  filter: invert(1) brightness(2);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 760px) {
  .hero-watermark { width: 44%; top: 16%; right: 4%; opacity: .35; }
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding-bottom: 90px; }
.hero-kicker {
  font-family: 'Oswald', sans-serif;
  color: var(--accent);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  max-width: 16ch;
  color: #fff;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  max-width: 620px;
  font-size: 1.08rem;
  color: #d7dade;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ffffff26;
  padding-top: 26px;
  gap: 20px;
}
.stat-row div { display: flex; flex-direction: column; gap: 4px; }
.stat-row strong { font-family: 'Oswald', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; }
.stat-row span { font-size: .8rem; color: #b7bcc3; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Sections generic ---------- */
section { padding: 110px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: #fff; }
.alt-bg { background: var(--bg-alt); }

/* ---------- Intro strip ---------- */
.intro { padding: 90px 0 40px; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: start; }
.intro h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); color: #fff; }
.intro-lead { font-size: 1.15rem; color: var(--text); }
.intro-points { display: grid; gap: 18px; margin-top: 10px; }
.intro-points li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-dim); }
.intro-points strong { color: var(--text); display: block; font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: .92rem; letter-spacing: .03em; }
.intro-points .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 8px; flex: none; }

/* ---------- Products ---------- */
.feature-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 40px;
}
.feature-banner-media { border-radius: 10px; overflow: hidden; background: #fff; aspect-ratio: 16/11; }
.feature-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-banner-text { padding: 10px 30px 10px 0; }
.feature-banner-text h3 { font-size: 1.6rem; color: #fff; margin: 10px 0 12px; }
.feature-banner-text p { font-size: 1rem; margin-bottom: 0; }

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.gallery-item { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: #ffffff2e; }
.product-media { aspect-ratio: 4/3; background: #0a0b0d; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 26px 24px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-tag { font-family: 'Oswald', sans-serif; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.product-body h3 { font-size: 1.22rem; color: #fff; margin-bottom: 4px; }
.product-body p { font-size: .94rem; margin-bottom: 0; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-card { background: var(--bg); padding: 36px 28px; }
.why-card .num { font-family: 'Oswald', sans-serif; color: var(--accent); font-size: .85rem; letter-spacing: .1em; margin-bottom: 18px; display: block; }
.why-card h3 { font-size: 1.08rem; color: #fff; }
.why-card p { font-size: .92rem; margin-bottom: 0; }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: "";
  position: absolute; left: 108px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--accent), var(--line));
}
.timeline-item { display: grid; grid-template-columns: 90px 26px 1fr; gap: 0 22px; padding: 18px 0; align-items: start; }
.timeline-year { font-family: 'Oswald', sans-serif; font-size: 1.15rem; color: #fff; text-align: right; padding-top: 2px; }
.timeline-item.is-future .timeline-year { color: var(--accent); }
.timeline-dot { display: flex; justify-content: center; padding-top: 6px; }
.timeline-dot span { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px #ff5a1f22; }
.timeline-item.is-future .timeline-dot span { background: transparent; border: 2px solid var(--accent); box-shadow: none; }
.timeline-text { padding-bottom: 4px; }
.timeline-text h4 { font-size: 1rem; color: #fff; margin-bottom: 4px; text-transform: none; font-family: 'Inter', sans-serif; font-weight: 600; }
.timeline-text p { font-size: .93rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.02rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.faq-q .plus { font-size: 1.4rem; color: var(--accent); transition: transform .25s ease; flex: none; font-family: sans-serif; }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 4px 24px; font-size: .96rem; max-width: 70ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-card h3 { color: #fff; font-size: 1.4rem; }
.contact-list { display: grid; gap: 22px; margin-top: 24px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ic {
  width: 40px; height: 40px; border-radius: 10px; background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center; color: var(--accent); flex: none;
}
.contact-list strong { display: block; color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-family: 'Oswald', sans-serif; margin-bottom: 2px; }
.contact-list a, .contact-list span.val { color: var(--text-dim); }
.contact-list a:hover { color: var(--accent); }
.social-row { display: flex; gap: 12px; margin-top: 30px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s;
}
.social-row a:hover { border-color: var(--accent); color: var(--accent); }

.shop-card {
  border-radius: var(--radius);
  padding: 44px 40px;
  background: linear-gradient(135deg, #201107, #14161a 60%);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px; height: 100%;
  justify-content: center;
}
.shop-card .eyebrow { margin-bottom: 0; }
.shop-card h3 { font-size: 1.7rem; color: #fff; max-width: 20ch; }
.shop-card p { max-width: 46ch; }

/* ---------- Footer ---------- */
footer { background: #08090a; border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand img { height: 30px; filter: invert(1) brightness(2); margin-bottom: 16px; }
.footer-brand p { max-width: 34ch; font-size: .92rem; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--text-dim); font-size: .92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; border-top: 1px solid var(--line);
  font-size: .82rem; color: #6b7078;
}
.footer-bottom a { color: #6b7078; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Legal pages ---------- */
.legal-page { padding-top: 160px; padding-bottom: 100px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.6rem); color: #fff; margin-bottom: 30px; }
.legal-page h2 { font-size: 1.15rem; color: #fff; margin-top: 40px; text-transform: none; font-family: 'Inter', sans-serif; font-weight: 700; }
.legal-page p, .legal-page li { color: var(--text-dim); font-size: .98rem; }
.legal-page ul { list-style: disc; padding-left: 22px; display: block; }
.legal-page ul li { margin-bottom: 8px; }
.legal-page a.link { color: var(--accent); }
.legal-box { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 34px; margin: 20px 0 34px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .feature-banner { grid-template-columns: 1fr; }
  .feature-banner-text { padding: 0 10px 10px; }
}
@media (max-width: 760px) {
  .nav-links, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 76px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .timeline::before { left: 66px; }
  .timeline-item { grid-template-columns: 50px 20px 1fr; }
  .hero { padding-top: 110px; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

body.nav-open .mobile-nav { display: flex; }
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: #0c0d0fee; backdrop-filter: blur(6px);
  flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.mobile-nav a { font-family: 'Oswald', sans-serif; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .04em; color: #fff; }
.mobile-nav .btn { margin-top: 10px; }
