body {
  margin: 0;
  background: linear-gradient(180deg, #fffdf8 0%, #f8f3ea 100%);
  color: #303320;
  font-family: Inter, Arial, sans-serif;
}

a { color: inherit; }

.page-header {
  border-bottom: 1px solid rgba(140, 138, 103, .2);
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner,
.section,
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 20px;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  color: #3F422C;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #3F422C;
  font-size: 13px;
  font-weight: 600;
}

.nav a { text-decoration: none; }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #3F422C;
  color: #fff;
  padding: 13px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(63, 66, 44, .07);
}

.ghost {
  background: #fffdf8;
  color: #3F422C;
  border: 1px solid rgba(140, 138, 103, .35);
}

.hero {
  padding: 74px 0 54px;
  border-bottom: 1px solid rgba(140, 138, 103, .16);
  background:
    radial-gradient(circle at top left, rgba(232, 221, 203, .45), transparent 34rem),
    #f5f0e7;
}

.eyebrow {
  color: #8C8A67;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: #3F422C;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin: 18px 0 0;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(48, 51, 32, .72);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding-block: 64px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(0, .24fr);
  gap: 42px;
  align-items: start;
}

.article {
  display: grid;
  gap: 34px;
}

.article section {
  border-bottom: 1px solid rgba(140, 138, 103, .16);
  padding-bottom: 30px;
}

.article section:last-child { border-bottom: 0; }

.article h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.article h3 {
  margin: 24px 0 10px;
  font-size: 1.35rem;
}

.article p,
.article li {
  color: rgba(48, 51, 32, .72);
  font-size: 16px;
  line-height: 1.9;
}

.article p { margin: 0 0 16px; }

.article ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.side-card {
  border: 1px solid rgba(140, 138, 103, .22);
  border-radius: 10px;
  background: rgba(255, 253, 248, .82);
  padding: 24px;
  position: sticky;
  top: 112px;
  box-shadow: 0 10px 30px rgba(63, 66, 44, .07);
}

.side-card h2 {
  margin: 0;
  font-size: 1.45rem;
}

.side-card p {
  color: rgba(48, 51, 32, .68);
  font-size: 14px;
  line-height: 1.7;
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.link-list a {
  border-bottom: 1px solid rgba(140, 138, 103, .2);
  padding-bottom: 10px;
  color: #3F422C;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.footer {
  border-top: 1px solid rgba(140, 138, 103, .2);
  background: rgba(245, 240, 231, .85);
}

.footer-inner {
  padding-block: 34px;
  color: rgba(48, 51, 32, .65);
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 76px;
  }

  .brand span {
    display: none;
  }

  .nav {
    gap: 14px;
    font-size: 12px;
  }

  .nav a:not(.cta) {
    display: none;
  }

  .hero {
    padding: 54px 0 42px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

  .section {
    padding-block: 46px;
  }
}
