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

:root {
  --navy: #1a2744;
  --slate: #2c3e5a;
  --gold: #c9a96e;
  --gold-light: #dfc18e;
  --cream: #f8f6f1;
  --white: #ffffff;
  --text: #3a3a3a;
  --light-text: #6b7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 5%;
  background: rgba(26, 39, 68, 0.92);
  backdrop-filter: blur(12px);
  transition: padding 0.3s;
}
nav.scrolled { padding: 0.8rem 5%; box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.logo {
  font-size: 1.3rem; font-weight: 600; color: var(--white);
  letter-spacing: 1px; text-transform: uppercase;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase;
  font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1527668752968-14dc70a27c95?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,39,68,0.82) 0%, rgba(44,62,90,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 720px; padding: 0 2rem;
  animation: fadeUp 1s ease-out;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700;
  color: var(--white); margin-bottom: 2rem; line-height: 1.2;
}
.hero-content h1 span { color: var(--gold); }
.hero-btn {
  display: inline-block; padding: 0.9rem 2.5rem;
  background: var(--gold); color: var(--navy);
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 4px; transition: all 0.3s;
}
.hero-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,0.4); }

/* SECTION STYLING */
section { padding: 6rem 5%; }
.section-label {
  text-transform: uppercase; letter-spacing: 3px;
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--navy); margin-bottom: 1.5rem; line-height: 1.3;
}

/* ABOUT */
.about {
  display: flex; align-items: center; gap: 5rem;
  max-width: 1100px; margin: 0 auto;
}
.about-text { flex: 1; }
.about-text p { color: var(--light-text); font-size: 1.02rem; margin-bottom: 1.2rem; }
.about-image {
  flex: 0 0 380px; height: 460px; border-radius: 8px; overflow: hidden;
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--gold); border-radius: 8px;
  transform: translate(12px, 12px); z-index: -1;
}

/* CONTACT */
.contact-section { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-form { margin-top: 2.5rem; text-align: left; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--slate); margin-bottom: 0.4rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid #d5d5d5; border-radius: 6px;
  font-family: inherit; font-size: 0.95rem;
  background: var(--white); transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.submit-btn {
  width: 100%; padding: 1rem;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 6px; cursor: pointer;
  font-family: inherit; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all 0.3s;
}
.submit-btn:hover { background: var(--slate); }

/* FOOTER */
footer {
  text-align: center; padding: 2.5rem 5%;
  background: var(--navy); color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
footer span { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .about { flex-direction: column-reverse; gap: 2.5rem; }
  .about-image { flex: none; width: 100%; height: 300px; }
  .nav-links { display: none; }
}
