@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Montserrat:wght@700;800;900&display=swap');

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

:root {
  --dark: #080808;
  --dark2: #111111;
  --light: #ffffff;
  --muted: #888888;
  --accent: #F5BD0B;
  --border: #1e1e1e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 70px;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-brand .nav-icon {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}
.nav-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--light);
}
.nav-brand .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--light); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.68) 45%, rgba(0,0,0,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 60px;
  max-width: 760px;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 36px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 38px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--light);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover {
  background: var(--light);
  color: var(--dark);
  border-color: var(--light);
}

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

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 150px 60px 70px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, #0e0e0e, var(--dark));
}
.page-header .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 700px;
}
.page-header p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 550px;
}

/* ===== CONTENT SECTIONS ===== */
.section { padding: 80px 60px; }
.section-dark { background: var(--dark2); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.about-text p {
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.values-list li {
  border-left: 2px solid var(--accent);
  padding-left: 22px;
}
.values-list li h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.values-list li p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== BRANDS ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 30px;
  border: 1px solid var(--border);
  transition: background 0.3s;
  cursor: default;
}
.brand-card:hover { background: #161616; }

.brand-card img {
  max-width: 120px;
  max-height: 52px;
  width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.brand-card:hover img { opacity: 1; }


/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; }

.contact-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.contact-item:last-child { border-bottom: 1px solid var(--border); }

.contact-item .label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.contact-item a,
.contact-item p {
  color: var(--light);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--muted); }

/* Partnership cards */
.partnership-panel h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 36px;
}

.partnership-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.partnership-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.partnership-item:last-child { border-bottom: 1px solid var(--border); }

.partnership-item .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  padding-top: 4px;
  flex-shrink: 0;
  width: 28px;
}

.partnership-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.partnership-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 55px 60px 40px;
  background: var(--dark);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-brand .footer-icon {
  height: 46px;
  width: auto;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-brand-text .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--light);
}
.footer-brand-text .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.footer-contacts {
  display: flex;
  gap: 56px;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-block .footer-label {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-contact-block p,
.footer-contact-block a {
  font-size: 0.88rem;
  color: var(--light);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.3s;
}
.footer-contact-block a:hover { color: var(--muted); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom > p {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-legal {
  font-size: 0.7rem;
  color: #4a4a4a;
  line-height: 1.7;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light);
  background: none;
  border: none;
  padding: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    padding: 30px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
  }

  .hero-content { padding: 0 24px; }
  .section { padding: 60px 24px; }
  .page-header { padding: 120px 24px 50px; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }

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

  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-contacts { gap: 28px; }
  footer { padding: 40px 24px 30px; }
  .footer-bottom { align-items: flex-start; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card { padding: 36px 20px; }
  .footer-contacts { flex-direction: column; }
  .footer-brand { align-items: center; }
}
