:root {
  --brown-900: #3e2723;
  --brown-800: #4e342e;
  --brown-500: #6d4c41;
  --cream-25: #fffdf8;
  --cream-50: #fffaf3;
  --cream-100: #f7efe4;
  --text: #2a221f;
  --muted: #8d776a;
  --shadow: 0 10px 24px rgba(62, 39, 35, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--text);
  background: var(--cream-25);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}
section {
  padding: 72px 0;
  scroll-margin-top: 96px;
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream-50);
  border-bottom: 1px solid rgba(77, 52, 46, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--brown-900);
  text-decoration: none;
}
.logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brown-800), var(--brown-500));
  box-shadow: var(--shadow);
}
.menu {
  display: flex;
  gap: 22px;
  align-items: center;
}
.menu a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--brown-800);
  text-decoration: none;
}
.menu a:hover {
  background: var(--cream-100);
}
.cta {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--brown-800);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.cta:hover {
  filter: brightness(1.03);
}

.burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.burger svg {
  width: 26px;
  height: 26px;
}
@media (max-width: 860px) {
  .menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream-50);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 4%;
  }
  .menu.show {
    display: flex;
  }
  .menu a,
  .cta {
    width: 100%;
  }
  .burger {
    display: block;
  }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream-50), var(--cream-25));
  border-bottom: 1px solid rgba(77, 52, 46, 0.1);
}
.hero-wrap {
  padding: 42px 0;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--brown-900);
}
.hero .sub {
  font-size: 14px;
  color: var(--muted);
}

/* Content */
.grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}
@media (max-width: 860px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--brown-900);
}
h3 {
  color: var(--brown-800);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.card {
  background: var(--cream-50);
  border: 1px solid rgba(77, 52, 46, 0.1);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.card.soft {
  background: var(--cream-100);
}
.check,
.bullets {
  padding-left: 20px;
}

/* Price */
.price {
  margin-top: 12px;
  border: 1px solid rgba(77, 52, 46, 0.12);
  border-radius: 16px;
  overflow: hidden;
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px dashed rgba(77, 52, 46, 0.2);
}
.price-row:last-child {
  border-bottom: 0;
}
.price-row span:last-child {
  font-weight: 700;
  color: var(--brown-800);
}

/* Contact */
.contact {
  list-style: none;
  margin: 10px 0 18px;
  padding: 0;
}
.contact li {
  margin: 6px 0;
}
.social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brown-800);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.icon:hover {
  filter: brightness(1.05);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(77, 52, 46, 0.1);
  background: var(--cream-50);
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
