.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  min-height: 100vh;
  align-items: center;
}

.hero-content {
  text-align: center;
  padding: 60px 48px;
  max-width: 600px;
  margin: 0 auto;
}

.hero-content .compass {
  display: inline-block;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-established {
  display: inline-block;
  border: 1px solid rgba(201,160,74,0.3);
  padding: 10px 36px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.1);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-style: italic;
  text-shadow: 0 0 20px rgba(201,160,74,0.3), 0 2px 30px rgba(0,0,0,0.1);
  letter-spacing: 4px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-line {
  width: 120px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: 0.5;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 10px;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Image grid */
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 8px;
  padding: 40px 40px 40px 0;
  height: 90vh;
}

.hero-img {
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.hero-img:hover {
  transform: scale(1.02);
}

.hero-img-main {
  grid-row: 1 / 4;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-images { padding: 20px; height: 50vh; }
  .hero-content { padding: 100px 28px 40px; }
  .hero-title { font-size: 3rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-images { height: 40vh; gap: 4px; padding: 12px; }
}
