:root {
  --teal: #0A2F44;
  --teal-mid: #0e3d57;
  --teal-light: #164e6e;
  --gold: #FFB74D;
  --gold-dark: #e69b2a;
  --burnt: #FF8A65;
  --off-white: #F8F9FA;
  --light-grey: #eef0f2;
  --text-dark: #0d1f2d;
  --text-mid: #3a5068;
  --text-light: #8fa8bc;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--burnt));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,183,77,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,183,77,.5);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

/* Navbar */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all .4s ease;
  background: var(--teal);
}
nav.scrolled {
  background: rgba(10, 47, 68, .97);
  backdrop-filter: blur(12px);
  padding: .8rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; flex-direction: column;
  text-decoration: none;
}
.logo-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.2;
}
.logo-sub {
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--teal);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  transition: color .3s;
}
.close-menu {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: 4rem auto;
  background: #fff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--teal);
}
.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--sans);
}
.form-section {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-grey);
}
.form-section h3 {
  font-family: var(--serif);
  color: var(--teal);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Dashboard & Tables */
.dashboard-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}
.status-badge {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-approved { background: #d4edda; color: #155724; }
.status-rejected { background: #f8d7da; color: #721c24; }

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
th {
  background: var(--light-grey);
  color: var(--teal);
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .vision-intro { grid-template-columns: 1fr; }
  .form-container { padding: 1.5rem; margin: 2rem 1rem; }
}
