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

body {
  background: #F8F7F4;
  color: #2E2E2E;
  font-family: "Inter", sans-serif;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 82px;
  width: 100%;
  text-align: center;
  padding: 24px;
}

.logo-img {
  width: 540px;
  max-width: 82vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

.essence {
  padding: 100px 24px 110px;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #5E6F5A;
  font-weight: 600;
  margin-bottom: 22px;
}

.essence h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 500;
  color: #5E6F5A;
  margin-bottom: 28px;
  line-height: 1.1;
}

.essence p {
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: 18px;
  line-height: 1.8;
  color: #3A3A3A;
}

.chapters {
  background: #EFECE6;
  padding: 90px 24px;
  text-align: center;
}

.chapters h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  color: #5E6F5A;
  font-weight: 500;
  margin-bottom: 16px;
}

.chapters p {
  max-width: 620px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

footer {
  background: #5E6F5A;
  color: #F8F7F4;
  text-align: center;
  padding: 48px 24px;
  letter-spacing: 4px;
  font-size: 14px;
}

footer span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 3px;
  opacity: .8;
}

@media (max-width: 768px) {
  .hero-content {
    margin-top: 72px;
  }

  .logo-img {
    width: 360px;
    max-width: 88vw;
  }

  .essence h1 {
    font-size: 40px;
  }

  .essence p {
    font-size: 16px;
  }
}
