:root {
  --primary: #c79a3b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 45px;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* MOBILE */
.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 64px;
    right: -100%;
    background: #fff;
    width: 200px;
    flex-direction: column;
    padding: 20px;
    transition: .3s;
  }

  nav.open {
    right: 0;
  }

  .menu-btn {
    display: block;
  }
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  margin-top: 70px;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.hero-content {
  position: absolute;
  inset: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
}

.btn {
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
}

/* SECTIONS */
section {
  padding: 90px 20px;
  text-align: center;
}

.stats {
  background: #111;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 30px;
}

.stat {
  font-size: 36px;
  color: var(--primary);
}

.stat span {
  display: block;
  font-size: 14px;
  color: #ccc;
}

.grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 24px;
}

.card {
  padding: 40px;
  border: 1px solid #ddd;
}

.highlight {
  border-color: var(--primary);
}

form {
  max-width: 400px;
  margin: auto;
  display: grid;
  gap: 14px;
}

input, button {
  padding: 14px;
}
