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

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* =================================================
   HEADER / NAVBAR
================================================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  max-width: 1320px;
  margin: auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =================================================
   LOGO – BRAND STANDARD
================================================= */
.logo img {
  height: 44px;           /* Inner pages */
  width: auto;
  display: block;
}

/* Home page logo */
.home .logo img {
  height: 72px;
}

/* =================================================
   NAVIGATION – DESKTOP
================================================= */
.nav-desktop {
  display: flex;
}

.nav-desktop a {
  margin-left: 36px;
  text-decoration: none;
  color: #111111;
  font-size: 14px;
  letter-spacing: 0.6px;
  opacity: 0.75;
  position: relative;
  transition: opacity 0.3s ease;
}

.nav-desktop a:hover {
  opacity: 1;
}

.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #c4a35a;
}

/* =================================================
   MOBILE MENU BUTTON
================================================= */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* =================================================
   MOBILE NAVIGATION
================================================= */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #eaeaea;
}

.nav-mobile a {
  padding: 16px 24px;
  text-decoration: none;
  color: #111111;
  font-size: 14px;
  border-bottom: 1px solid #eaeaea;
}

/* ACTIVE STATE (IMPORTANT) */
.nav-mobile.active {
  display: flex;
}

/* =================================================
   HERO SECTION – BASE
================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  overflow: hidden;
}

/* HERO BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LIGHT LUXURY OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 2;
}

/* =================================================
   HOME HERO – CENTERED LUXURY LAYOUT
================================================= */
.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-center-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
}

.hero-center-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 22px;
  color: #111111;
}

.hero-center-content p {
  font-size: 16px;
  color: #444444;
  margin-bottom: 44px;
}

/* =================================================
   CTA BUTTON
================================================= */
.hero-btn {
  display: inline-block;
  padding: 14px 48px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  border: 1px solid #000000;
  transition: all 0.35s ease;
}

.hero-btn:hover {
  background: transparent;
  color: #000000;
}

/* =================================================
   INNER PAGES
================================================= */
.page-wrapper {
  min-height: calc(100vh - 90px);
  padding: 140px 20px 120px;
  display: flex;
  justify-content: center;
}

.page-content {
  max-width: 760px;
  width: 100%;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #111111;
}

.page-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555555;
  margin-bottom: 34px;
}

/* =================================================
   FOOTER
================================================= */
footer {
  padding: 40px;
  text-align: center;
  font-size: 12px;
  color: #888888;
  border-top: 1px solid #eaeaea;
  background: #ffffff;
}

/* =================================================
   RESPONSIVE – MOBILE
================================================= */
@media (max-width: 900px) {

  .navbar {
    padding: 20px;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .logo img {
    height: 32px;
  }

  .home .logo img {
    height: 48px;
  }

  .hero-center-content h1 {
    font-size: 34px;
  }

  .hero-center-content p {
    font-size: 14px;
  }

  .page-wrapper {
    padding: 110px 20px 90px;
  }

  .page-title {
    font-size: 30px;
  }

  .page-content p {
    font-size: 14px;
  }
}