:root {
  --bg: #070707;
  --panel: #0f0f0f;
  --text: #f4f4f4;
  --muted: #a0a0a0;
  --accent: #c8a95b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* noise overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("https://www.transparenttextures.com/patterns/noise.png");
  opacity: 0.05;
  z-index: 999;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s;
}

.nav.scrolled {
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

nav a {
  margin-left: 18px;
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
  color: var(--accent);
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, #1a1a1a, #070707 60%);
  transform: scale(1.1);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: "Playfair Display", serif;
}

.hero-content p {
  margin-top: 10px;
  color: var(--muted);
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  background: transparent;
}

.btn:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 110px 0;
}

.section.alt {
  background: var(--panel);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  padding: 22px;
  border: 1px solid #222;
  transition: 0.3s;
  background: rgba(255,255,255,0.02);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

/* FORM */
form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea {
  padding: 12px;
  background: #111;
  border: 1px solid #2a2a2a;
  color: var(--text);
}

textarea {
  min-height: 120px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* TOAST */
#toast {
  margin-top: 12px;
  color: var(--accent);
}