:root {
  --primary: #ffffff;
  --accent: #d4af37;
  --accent-glow: rgba(212, 175, 55, 0.3);
  --bg-dark: #050505;
  --bg-card: #0f0f0f;
  --text-main: #ffffff;
  --text-muted: #888888;
  --font-display: 'Syncopate', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --section-spacing: 10rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.1;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 100%);
  transition: var(--transition);
}

header:hover {
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(15px);
  padding: 1.2rem 5%;
}

.logo-container img {
  height: 45px;
  width: auto;
  filter: brightness(1);
  transition: var(--transition);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 10vw, 6rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to bottom, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.btn {
  padding: 1.2rem 3rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-outline {
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(255,255,255,0.05);
}

/* Sections */
section {
  padding: var(--section-spacing) 10%;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 4rem;
  position: relative;
  display: block;
  width: 100%;
}

.section-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  filter: grayscale(0.5) contrast(1.1);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.about-image:hover img {
  filter: grayscale(0);
  transform: scale(1.02);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent);
  z-index: -1;
  transition: var(--transition);
}

.about-image:hover::after {
  top: 10px;
  right: -10px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 4rem 2.5rem;
  border: 1px solid #1a1a1a;
  transition: var(--transition);
  position: relative;
}

.feature-card:hover {
  background: #151515;
  border-color: var(--accent);
  transform: translateY(-5px);
}

.feature-card h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing Cards */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.price-card {
  background: #0a0a0a;
  padding: 4rem 3rem;
  border: 1px solid #222;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--accent);
  background: #0d0d0d;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.price-header h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.price-header small {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-size: 0.7rem;
}

.price-card ul {
  list-style: none;
  margin: 3rem 0;
  flex-grow: 1;
}

.price-card li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.85rem;
  color: #ccc;
  display: flex;
  align-items: center;
}

.price-card li::before {
  content: '→';
  margin-right: 1rem;
  color: var(--accent);
  font-size: 0.7rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1/1.2;
  overflow: hidden;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.8);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  background: #000;
  border-top: 1px solid #111;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form textarea, .contact-form .btn {
  grid-column: span 2;
}

input, textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  padding: 1.2rem 0.5rem;
  color: white;
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  background: rgba(255,255,255,0.02);
}

/* Footer */
footer {
  padding: 6rem 10%;
  background: #000;
  border-top: 1px solid #111;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links a {
  color: var(--text-main);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid #333;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: rotate(15deg);
}

footer p {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid, .form-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .price-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  header {
    padding: 1.5rem 5%;
  }
  nav {
    display: none;
  }
  section {
    padding: 6rem 5%;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form textarea, .contact-form .btn {
    grid-column: span 1;
  }
  footer {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}