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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 82px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: #fff;
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu a {
  color: #d8d8d8;
  font-size: 14px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #d4af37;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  height: calc(100vh - 82px);
  min-height: 620px;
  background: url("IMG_0324.png") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeHero 1.2s ease;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 26px;
}

.section {
  padding: 110px 20px 90px;
}

.bio {
  background: #0f0f0f;
}

.bio-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.bio-text h2,
.section-heading h2,
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.bio-text p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.bio-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 12px;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px;
}

.grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card h3 {
  padding: 18px 16px 22px;
  font-size: 17px;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.luxury {
  background: linear-gradient(45deg, #d4af37, #f5e6b3);
  color: #111;
}

.social {
  background: #1b1b1b;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta {
  background: #111;
  text-align: center;
}

.cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.highlight {
  font-size: 20px;
  color: #d4af37;
  margin: 18px 0 26px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-info {
  margin-top: 28px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}

footer {
  text-align: center;
  padding: 24px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  background: #0b0b0b;
}

/* visible by default */
.reveal {
  opacity: 1;
  transform: none;
}

/* only animate if JS adds this */
.js-animate .reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js-animate .reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeHero {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .bio-container {
    grid-template-columns: 1fr;
  }

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

  .bio-text h2,
  .section-heading h2,
  .cta h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 78px;
  }

  .navbar {
    padding: 16px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-direction: column;
    align-items: center;
    padding: 18px 0;
    gap: 16px;
  }

  .nav-menu.show {
    display: flex;
  }

  .hero {
    height: calc(100vh - 78px);
    min-height: 540px;
  }

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

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

  .section {
    padding: 90px 16px 70px;
  }

  .card img {
    height: 210px;
  }

  .highlight {
    font-size: 18px;
  }
}
