/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP BAR */
.top-bar {
  background: #0b1f36;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 13px;
}

/* HEADER */
.header {
  background: white;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: 600;
  font-size: 18px;
}

.nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.btn-header {
  background: #0b1f36;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
}

/* HERO (NO BACKGROUND IMAGE ANYMORE) */
.hero {
  padding: 100px 0;
  background: #ffffff;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT TEXT */
.hero-text {
  flex: 1;
}

.eyebrow {
  letter-spacing: 2px;
  font-size: 12px;
  color: #b89c5a;
  margin-bottom: 15px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.sub {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

/* IMAGE (THIS IS THE ONLY IMAGE NOW) */
.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  max-height: 420px;   /* THIS FIXES THE GIANT FACE */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-gold {
  background: #d6b979;
  color: #0b1f36;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.btn-outline {
  border: 1px solid #0b1f36;
  color: #0b1f36;
  padding: 14px 20px;
  text-decoration: none;
  border-radius: 4px;
}

/* SERVICES */
.services {
  padding: 100px 0;
  background: #f8f8f8;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow-dark {
  letter-spacing: 2px;
  font-size: 12px;
  color: #b89c5a;
  margin-bottom: 10px;
}

.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 15px;
}

.services-sub {
  color: #555;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}