:root {
  --ink: #11100f;
  --cream: #f6efe6;
  --champagne: #e8d5c0;
  --blush: #d8a7a7;
}

* {
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.font-display {
  font-family: "Playfair Display", Georgia, serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: #11100f;
  color: white;
}

.btn-light {
  background: white;
  color: #11100f;
}

.btn-outline {
  border: 1px solid rgba(17, 16, 15, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #11100f;
}

.section-pad {
  padding: 5rem 1.25rem;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.premium-card {
  border: 1px solid rgba(17, 16, 15, 0.09);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(39, 29, 20, 0.08);
}

.input {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(17, 16, 15, 0.12);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.input:focus {
  border-color: rgba(17, 16, 15, 0.38);
  background: white;
  box-shadow: 0 0 0 4px rgba(216, 167, 167, 0.16);
}

.label {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(17, 16, 15, 0.55);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.08));
}

.nav-link {
  position: relative;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  height: 1px;
  width: 0;
  background: white;
  content: "";
  transition: width 180ms ease;
}

.nav-link:hover::after {
  width: 100%;
}

.dashboard-link,
.admin-link {
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  transition: background 160ms ease, color 160ms ease;
}

.dashboard-link {
  color: rgba(255, 255, 255, 0.68);
}

.dashboard-link:hover,
.dashboard-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.admin-link {
  color: rgba(17, 16, 15, 0.58);
}

.admin-link:hover,
.admin-link.active {
  background: #11100f;
  color: white;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 900;
}

.status-pending {
  background: #fff4d6;
  color: #8a5b00;
}

.status-approved {
  background: #ddf7e6;
  color: #126b39;
}

.status-rejected {
  background: #ffe4e2;
  color: #a82920;
}

.region-card.active {
  border-color: rgba(17, 16, 15, 0.78);
  background: #11100f;
  color: white;
}

.preview-grid img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 6.5rem 2rem;
  }
}

