:root {
  --brown: #2a160b;
  --brown-light: #3b1f12;
  --gold: #c9972b;
  --white: #ffffff;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
  color: #333;
}

/* NAVBAR */
.navbar {
  background: linear-gradient(to right, var(--brown), #1f0f08);
  padding: 16px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  color: var(--gold);
  font-weight: bold;
  font-size: 22px;
}

.navbar a {
  color: #fff;
  margin-left: 22px;
  text-decoration: none;
}

.navbar a.active,
.navbar a:hover {
  color: var(--gold);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--brown-light), var(--brown));
  padding: 90px 8%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-logo {
  width: 300px;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.hero-left h1 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 10px;
}

.hero-left p {
  color: #ddd;
  max-width: 520px;
}

.hero-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* SECTIONS */
.section {
  padding: 80px 8%;
}

.section.dark {
  background: var(--brown-light);
  color: #fff;
}

.center {
  text-align: center;
}

/* GLASS CARDS */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.glass-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.glass-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.status.ok {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 14px;
  background: rgba(201,151,43,0.2);
  color: var(--gold);
  border-radius: 20px;
  font-size: 13px;
}

/* ASSURANCE */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.assurance-list {
  margin-top: 20px;
  list-style: none;
}

.assurance-list li {
  margin-bottom: 10px;
  font-weight: bold;
}

/* CTA */
.cta-section {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown);
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

/* FOOTER */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
}

/* SCROLL */
.reveal {
  opacity: 0;
}

.reveal.show {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ===== DESKTOP DEFAULT ===== */
.desktop-nav {
  display: flex;
  gap: 22px;
}

.hamburger {
  display: none;
}

.mobile-menu {
  display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2001;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(43, 21, 12, 0.92);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 2000;
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .menu-card {
    width: 80%;
    max-width: 320px;
    padding: 16px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
  }

  .menu-card a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
  }
}
