\n:root {
  --primary: #ff4d3d;
  --dark: #0a0a0a;
  --light: #fafafa;
  --accent: #00d4ff;
  --accent2: #ffd700;
  --gray: #333333;
  --border: rgba(255,255,255,0.1);
}

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

html, body {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(48px, 8vw, 120px); font-weight: 700; }
h2 { font-size: clamp(36px, 6vw, 80px); font-weight: 700; }
h3 { font-size: clamp(24px, 4vw, 48px); font-weight: 600; }

p { line-height: 1.65; font-size: 16px; opacity: 0.9; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 48px;
  align-items: center;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.cta {
  background: var(--primary);
  color: var(--dark);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 2px solid var(--primary);
  cursor: pointer;
  text-transform: uppercase;
}

.cta:hover {
  background: transparent;
  color: var(--primary);
}

footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 100px 0 40px;
  margin-top: 120px;
}

footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 120px;
  margin-bottom: 60px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
}

footer h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--accent);
  font-weight: 600;
}

footer p {
  font-size: 13px;
  line-height: 1.6;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer a {
  font-size: 13px;
  opacity: 0.7;
  transition: all 0.3s;
}

footer a:hover {
  opacity: 1;
  color: var(--accent);
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.6;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 32px 0;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  nav { display: none; }
  footer .grid { grid-template-columns: 1fr; }
}
