@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@200;300;400;500&display=swap');

:root {
  --primary: #D4AF37; /* Metallic Gold */
  --secondary: #1A1A1A; /* Deep Charcoal */
  --accent: #FFFFFF;
  --bg: #050505;
  --text: #E0E0E0;
  --text-dim: #999999;
  --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  --glass: rgba(20, 20, 20, 0.8);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Grainy Texture Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  background: transparent;
}

nav.scrolled {
  padding: 15px 0;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/hero.png') center/cover no-repeat;
  transform: scale(1.1);
  filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 10;
}

.hero-content h1 {
  font-size: 8vw;
  line-height: 1;
  margin-bottom: 20px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(50px);
}

.hero-content p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--text-dim);
  opacity: 0;
  transform: translateY(20px);
}

/* Sections */
section {
  padding: 160px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 100px;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.section-title .divider {
  width: 60px;
  height: 1px;
  background: var(--primary);
  margin: 0 auto;
}

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 600px;
  cursor: pointer;
}

.service-card.wide { grid-column: span 8; }
.service-card.tall { grid-column: span 4; }

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  filter: brightness(0.6);
}

.service-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.service-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-info p {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  padding: 100px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo img {
  height: 30px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-links h4 {
  font-size: 12px;
  margin-bottom: 25px;
  color: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 11px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Responsiveness */
@media (max-width: 968px) {
  .service-card.wide, .service-card.tall { grid-column: span 12; }
  .hero-content h1 { font-size: 12vw; }
  .footer-content { flex-direction: column; gap: 50px; }
}
