* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(215,164,73,0.20), transparent 35%),
    linear-gradient(135deg, #040404 0%, #111111 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

nav {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 32px 8%;
  z-index: 2;
}

.logo-stack {
  display: flex;
  align-items: center;
}



.logo-circle {
  height: 118px;
  width: 118px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.hero-center-logo {
  margin-bottom: 42px;
}

.hero-circle-logo {
  width: 500px;
  max-width: 88%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 70px rgba(0,0,0,0.45));
}

.nav-button {
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 12px 20px;
  border-radius: 999px;
  transition: 0.3s;
}

.nav-button:hover {
  background: white;
  color: black;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 8% 80px;
  color: white;
  position: relative;
  z-index: 2;
  text-align: center;
}



.hero-content h1 {
  font-size: 74px;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  margin-bottom: 26px;
}

.description {
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn {
  background: #d7a449;
  color: white;
}

.primary-btn:hover {
  background: #b7832d;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

.secondary-btn:hover {
  background: white;
  color: black;
}



.location {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 100px 8%;
  background: #111;
  color: white;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.location-text span {
  color: #d7a449;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.location-text h2 {
  font-size: 48px;
  margin: 18px 0;
  font-family: 'Playfair Display', serif;
}

.location-text p {
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.info-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 18px 22px;
  border-radius: 16px;
  display: inline-block;
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 24px;
}

footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 26px;
}

@media (max-width: 900px) {
  nav {
    padding: 24px 5%;
  }

  .hero-content {
    padding-top: 180px;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .description {
    font-size: 18px;
  }

  .location-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .logo-text {
    height: 28px;
  }

  .logo-text-wrapper span {
    font-size: 9px;
  }

  .hero-circle-logo {
    width: 180px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .description {
    font-size: 16px;
  }
}

  .location-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .description {
    font-size: 16px;
  }

  .section-title h2,
  .location-text h2 {
    font-size: 34px;
  }
}