/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0e0e0e;
  --white: #ffffff;
  --gray: #f9f7f2;
  --gold: #c8a961;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  position: relative; /* 기준점 */
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--black);
}

/* ✅ 메뉴 중앙 고정 */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.95rem;
  transition: var(--transition);
}
.nav-menu a:hover { color: var(--gold); }

/* ✅ 오른쪽 고정 (왼쪽으로 안 밀리게 수정) */
.nav-right {
  position: absolute;
  right: 60px; /* 화면 오른쪽 여백 동일하게 */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-btn {
  text-decoration: none;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 8px 18px;
  transition: var(--transition);
}
.nav-btn:hover { background: var(--black); color: var(--white); }

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.language-switch button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  font-family: inherit;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.language-switch button:hover { color: var(--gold); }
.language-switch button.active { color: var(--gold); font-weight: 600; }

/* ✅ 반응형 (모바일에서는 좌우 정렬로 돌아감) */
@media (max-width: 900px) {
  .nav-menu {
    position: static;
    transform: none;
    justify-content: center;
  }
  .nav-right {
    position: static;
    transform: none;
  }
}

/* ===== CONTACT HERO ===== */
.contact-hero {
  padding: 160px 60px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.contact-hero p {
  color: #555;
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 40px;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
  text-transform: uppercase;
  flex: 0.3;
}

.contact-info {
  flex: 1;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.8;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 15px;
}

.office-grid strong {
  color: var(--black);
}

.note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: #aaa;
  padding: 30px 60px;
  margin-top: 80px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-inner a {
  color: #aaa;
  margin-left: 20px;
  text-decoration: none;
  transition: var(--transition);
}
.footer-inner a:hover {
  color: var(--gold);
}
