html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f7f3;
  color: #17120c;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

a {
  color: #6e2f2a;
  font-weight: 700;
}

.shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 247, 243, .94);
  border-bottom: 1px solid #ded8cb;
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  color: #17120c;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.brand span {
  display: block;
  color: #5f574c;
  font-size: 12px;
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #3f372f;
  text-decoration: none;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  background: #d4ad3f;
  color: #17120c;
  text-decoration: none;
  font-weight: 900;
}

.hero {
  padding: 76px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 34px;
  align-items: center;
}

.kicker {
  margin: 0 0 10px;
  color: #b6902e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: #17120c;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 25px;
}

.lead {
  margin: 18px 0 26px;
  color: #51483e;
  font-size: 20px;
  max-width: 760px;
}

.hero img,
.image-band img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ded8cb;
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: #eeebe3;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid #ded8cb;
  border-radius: 8px;
  background: #fffdf7;
}

.card p,
.content p,
.content li {
  color: #51483e;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: start;
}

.panel {
  padding: 24px;
  border: 1px solid #ded8cb;
  border-radius: 8px;
  background: #fffdf7;
}

.check-list {
  padding-left: 20px;
}

.check-list li {
  margin-bottom: 10px;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-links a {
  padding: 8px 10px;
  border: 1px solid #ded8cb;
  border-radius: 6px;
  background: #fffdf7;
  color: #3f372f;
  text-decoration: none;
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.faq-item {
  padding: 20px;
  border: 1px solid #ded8cb;
  border-radius: 8px;
  background: #fffdf7;
}

.faq-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.faq-item p {
  margin: 0;
  color: #51483e;
}

.cta {
  margin-top: 30px;
  padding: 30px;
  border-radius: 8px;
  background: #17120c;
  color: #fffdf7;
}

.cta h2,
.cta p {
  color: #fffdf7;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid #ded8cb;
  color: #5f574c;
  font-size: 14px;
}

@media (max-width: 860px) {
  .hero-grid,
  .content,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero img,
  .image-band img {
    min-height: 260px;
  }
}
