/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0d0d0d;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --light: #f5f0e8;
  --white: #ffffff;
  --text-muted: #888;
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }

a { text-decoration: none; color: inherit; }

img { display: block; width: 100%; object-fit: cover; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 40px;
  flex-shrink: 0;
}

.topbar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}

.topbar-left { display: flex; gap: 24px; }
.topbar-right { display: flex; gap: 20px; }

.topbar-right a {
  color: var(--dark);
  font-weight: 700;
  transition: opacity var(--transition);
}
.topbar-right a:hover { opacity: 0.65; }

/* ===== NAVBAR ===== */
.navbar {
  position: relative; top: auto; left: auto; right: auto; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  flex-shrink: 0;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex; gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--gold); font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

/* ===== HERO ===== */
.hero { padding-top: 0; flex: 1; display: flex; flex-direction: column; min-height: 0; }

.hero-image-wrapper {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
  display: block;
}

.hero-image-wrapper:hover .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.3) 0%,
    rgba(13,13,13,0.15) 40%,
    rgba(13,13,13,0.75) 100%
  );
}

.hero-text {
  position: absolute;
  bottom: 60px; left: 60px;
  max-width: 600px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 32px;
}

.hero-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-icon { font-size: 0.8rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,0.3);
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 56px;
  line-height: 1.2;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--dark2);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.about-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.35); }
.about-card:hover::before { transform: scaleX(1); }

.card-icon { font-size: 2.2rem; margin-bottom: 20px; }

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.about-card p { color: rgba(255,255,255,0.6); line-height: 1.7; font-size: 0.95rem; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  cursor: pointer;
}

.service-item:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }

.service-item img {
  height: 220px;
  transition: transform 0.6s ease;
}

.service-item:hover img { transform: scale(1.07); }

.service-info { padding: 28px 24px; }

.service-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.service-info p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--dark2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  resize: none;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 12px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: flex; padding: 8px 16px; font-size: 0.72rem; }
  .topbar-inner { flex-direction: column; gap: 4px; align-items: center; }
  .topbar-left { display: flex; gap: 16px; }
  .topbar-right { gap: 12px; }

  .navbar { padding: 16px 24px; }
  .nav-cta { display: none; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13,13,13,0.97);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-text { left: 24px; bottom: 40px; }
  .hero-text h1 { font-size: 2.4rem; }

  .hero-links { padding: 28px 24px; gap: 14px; }

  .about-grid,
  .services-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-image-wrapper { height: 70vh; }
  .hero-text h1 { font-size: 2rem; }
  .btn { padding: 14px 26px; font-size: 0.88rem; }
  section h2 { font-size: 1.8rem; }
}
