body {
  margin: 0;
  font-family: Vazirmatn, sans-serif;
  line-height: 1.9;
  background: #fffdf7;
  color: #292524;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  width: min(100% - 2.5rem, 74rem);
  margin: auto;
}
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}
.hero img {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  margin: auto auto 1rem;
  object-fit: cover;
  box-shadow: 2px 3px 0 rgba(180, 83, 9, 0.15);
}
h1,
h2 {
  font-family: Lalezar, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
p {
  margin: 0;
}
.lead {
  max-width: 58ch;
  margin: 1rem auto 0;
  color: #57534e;
  font-size: 1.08rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.section {
  margin: 5rem 0;
}
.ph {
  background: #fef9ef;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(41, 37, 36, 0.08),
    2px 3px 0 rgba(180, 83, 9, 0.15);
}
.ph img {
  width: 100%;
  display: block;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #78716c;
  font-weight: 700;
}
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  overflow: hidden;
  background: #fef9ef;
}
.fact {
  padding: 1.5rem;
  text-align: center;
  border-inline-start: 1px solid #e7e5e4;
}
.fact:first-child {
  border: 0;
}
.fact b {
  display: block;
  font:
    400 2rem Lalezar,
    sans-serif;
  color: #b45309;
}
.fact span {
  font-size: 0.9rem;
  color: #57534e;
}
.timeline {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.timeline li {
  display: grid;
  grid-template-columns: 4rem 1rem 1fr;
  gap: 1rem;
}
.timeline time {
  font:
    400 1.2rem Lalezar,
    sans-serif;
  color: #b45309;
  text-align: end;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #b45309;
  background: #fffdf7;
  margin-top: 0.9rem;
  position: relative;
}
.dot:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + 2rem);
  background: #e7e5e4;
}
.timeline li:last-child .dot:after {
  display: none;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: #fef9ef;
  border: 1px solid #e7e5e4;
  font-size: 0.9rem;
}
.faq {
  display: grid;
  gap: 0.75rem;
}
.faq details {
  background: #fef9ef;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  padding: 0 1.25rem;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 700;
}
.faq p {
  padding: 0 0 1rem;
  color: #57534e;
}
.card {
  padding: 1.5rem;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  background: #fffdf7;
}
.news {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 24px;
  background: #b45309;
  color: #fffdf7;
}
.news p {
  color: #fbe6cf;
}
.news form {
  display: flex;
  gap: 0.75rem;
}
.news input {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 0;
  min-width: 18rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  background: #fffdf7;
  color: #92400e;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}
.toast {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  background: #fef9ef;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 32px rgba(41, 37, 36, 0.12);
  display: none;
  max-width: 24rem;
}
@media (max-width: 900px) {
  .split,
  .news {
    grid-template-columns: 1fr;
  }
  .news form {
    flex-direction: column;
  }
  .news input {
    min-width: 0;
  }
  .timeline li {
    grid-template-columns: 3rem 1rem 1fr;
  }
}
