* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0f172a;
  background: #f7f5f2;
  line-height: 1.6;
}
.container {
  width: min(1140px, 100% - 2.5rem);
  margin: 0 auto;
}
.topbar {
  background: rgba(247, 245, 242, 0.88);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}
.logo {
  font-weight: 600;
  letter-spacing: .1rem;
}
.logo span {
  color: #b45309;
}
.menu {
  display: flex;
  gap: 1.2rem;
}
.menu a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  font-size: 0.9rem;
}
.btn {
  background: #b45309;
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn.sm {
  padding: 0.5rem 1rem;
  font-size: .8rem;
}
.hero {
  background: radial-gradient(circle at top, #fef3c7 0%, #f7f5f2 55%, #f7f5f2 100%);
  padding: 3.8rem 0 3.2rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  font-size: .7rem;
  letter-spacing: .15rem;
  text-transform: uppercase;
  color: rgba(15, 23, 42, .5);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin-bottom: 1.2rem;
}
.lead {
  margin-bottom: 1.4rem;
  color: rgba(15,23,42,0.7);
  max-width: 32rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.ghost {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.hero-card {
  background: #fff;
  border-radius: 1.2rem;
  border: 1px solid rgba(180,83,9,0.18);
  padding: 1.3rem 1.4rem 1.4rem;
  box-shadow: 0 10px 35px rgba(180,83,9,0.08);
}
.quote {
  font-style: italic;
  color: rgba(15, 23, 42, .7);
  margin-bottom: 1.2rem;
}
.stat-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat h3 {
  font-size: 1.7rem;
  color: #b45309;
}
.section {
  padding: 4rem 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 2.5rem;
  align-items: start;
}
.panel {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.6rem;
  border: 1px solid rgba(15,23,42,.03);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .03);
}
.panel h3 {
  margin-bottom: .6rem;
}
.panel ul {
  list-style: none;
  margin-bottom: .9rem;
}
.panel li {
  margin-bottom: .35rem;
}
.panel .full {
  width: 100%;
  text-align: center;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: .7rem;
}
.posts .sub {
  color: rgba(15, 23, 42, .55);
  margin-bottom: 2.3rem;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.post {
  background: #fff;
  border-radius: 1rem;
  padding: 1.1rem 1.1rem 1.4rem;
  border: 1px solid rgba(15,23,42,.02);
  min-height: 198px;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.post .tag {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15rem;
  color: #b45309;
}
.post h3 {
  font-size: 1.2rem;
}
.post p {
  color: rgba(15,23,42,.6);
}
.post .read {
  margin-top: auto;
  text-decoration: none;
  font-weight: 500;
  color: #0f172a;
}
.ventures .ven-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}
.ventures .ven {
  background: #fff;
  border-radius: 1rem;
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(15,23,42,.03);
}
.subscribe {
  background: #fff;
  border-top: 1px solid rgba(15,23,42,.03);
}
.sub-grid {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 2.2rem;
  align-items: center;
}
.form {
  display: grid;
  gap: .7rem;
}
.form input {
  padding: .65rem .7rem;
  border-radius: .7rem;
  border: 1px solid rgba(15,23,42,.15);
  outline: none;
}
.foot {
  font-size: .6rem;
  color: rgba(15,23,42,.5);
}
.footer {
  padding: 1.8rem 0 2.4rem;
  background: #f3f0eb;
}
.foot-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.social {
  display: flex;
  gap: 1rem;
}
.social a {
  text-decoration: none;
  color: rgba(15,23,42,.6);
  font-size: .8rem;
}

@media (max-width: 980px) {
  .hero-grid, .two-col, .sub-grid {
    grid-template-columns: 1fr;
  }
  .menu {
    display: none;
  }
  .hero {
    padding-top: 3.5rem;
  }
  .foot-flex {
    flex-direction: column;
  }
}
