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

body {
  font-family: "Georgia", serif;
  background: #faf9f7;
  color: #3d3d3d;
  line-height: 1.7;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #f5ebe0 0%, #faf9f7 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.nav {
  padding: 2rem 4rem;
}

.brand {
  font-size: 1.25rem;
  font-weight: 400;
  color: #5c4a3d;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #2d2418;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: #6b5d52;
  margin-bottom: 2.5rem;
  max-width: 450px;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #8b7355;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #6b5a45;
}

.hero-decoration {
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.1) 0%, transparent 70%);
}

/* About */
.about {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 1rem;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #2d2418;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #6b5d52;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}

.feature-num {
  font-size: 0.75rem;
  color: #8b7355;
  letter-spacing: 1px;
}

.feature h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #2d2418;
  margin: 0.5rem 0;
}

.feature p {
  font-size: 0.875rem;
  color: #6b5d52;
}

/* Quote */
.quote-section {
  padding: 6rem 4rem;
  background: #f5ebe0;
  text-align: center;
}

blockquote p {
  font-size: 1.75rem;
  font-style: italic;
  color: #2d2418;
  max-width: 600px;
  margin: 0 auto 1rem;
}

cite {
  font-size: 0.875rem;
  color: #8b7355;
  font-style: normal;
}

/* Footer */
.footer {
  padding: 4rem;
  text-align: center;
}

.footer .brand {
  display: block;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.875rem;
  color: #6b5d52;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
  }

  .hero-content {
    padding: 2rem;
  }

  .nav {
    padding: 2rem;
  }
}
