:root {
  --bg: #fff7ed;
  --bg-soft: #fff1db;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #3c1c16;
  --muted: #7d5a53;
  --primary: #d24c3f;
  --primary-dark: #9e2d25;
  --accent: #f4a340;
  --accent-soft: #ffd7a3;
  --line: rgba(115, 68, 53, 0.12);
  --shadow: 0 24px 80px rgba(123, 57, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Vazirmatn", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 163, 64, 0.26), transparent 28%),
    radial-gradient(circle at top right, rgba(210, 76, 63, 0.18), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 16px 0 32px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 84px -80px auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 215, 163, 0.55), transparent 70%);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #ef8461);
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  box-shadow: 0 16px 32px rgba(210, 76, 63, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-text strong {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand-text small,
.eyebrow,
.lead,
.hero-points,
.list-card p,
.contact-card p,
.footer p {
  color: var(--muted);
}

.topbar-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.chip {
  min-height: 46px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.chip-outline {
  background: transparent;
}

.chip:hover,
.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-card,
.feature-card,
.highlight-panel,
.list-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 32px;
  padding: 40px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1,
h2 {
  font-family: "Fraunces", serif;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.lead {
  margin: 18px 0 28px;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.9;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  font-weight: 700;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ef8461);
  box-shadow: 0 18px 34px rgba(210, 76, 63, 0.28);
}

.button-secondary {
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(210, 76, 63, 0.14);
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-right: 26px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffd089);
  box-shadow: 0 0 0 5px rgba(244, 163, 64, 0.14);
}

.hero-card {
  position: relative;
  min-height: 100%;
  border-radius: 34px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 233, 208, 0.84)),
    var(--surface);
}

.candy-scene {
  position: relative;
  height: 240px;
  margin-bottom: 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 241, 219, 0.5)),
    linear-gradient(135deg, rgba(255, 215, 163, 0.35), transparent);
  overflow: hidden;
}

.candy {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.candy::before,
.candy::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: inherit;
  transform: translateY(-50%) rotate(45deg);
}

.candy::before {
  right: calc(100% - 6px);
}

.candy::after {
  left: calc(100% - 6px);
}

.candy-one {
  top: 42px;
  right: 58px;
  width: 110px;
  height: 50px;
  background: linear-gradient(135deg, #ff7d7d, #f34e62);
  transform: rotate(-16deg);
}

.candy-two {
  top: 128px;
  right: 188px;
  width: 96px;
  height: 42px;
  background: linear-gradient(135deg, #f4a340, #ffd27f);
  transform: rotate(12deg);
}

.candy-three {
  top: 150px;
  right: 72px;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #d24c3f, #7e2f2f);
  border-radius: 24px;
  transform: rotate(18deg);
}

.candy-three::before,
.candy-three::after {
  width: 18px;
  height: 18px;
}

.candy-four {
  top: 48px;
  right: 220px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7a3b2e, #3f1d18);
  border-radius: 20px;
  transform: rotate(10deg);
}

.candy-four::before,
.candy-four::after {
  display: none;
}

.card-panel {
  border-radius: 24px;
  padding: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(210, 76, 63, 0.08);
}

.card-panel p {
  margin: 0 0 8px;
  color: var(--muted);
}

.card-panel h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  margin-bottom: 18px;
}

.mini-stats {
  display: grid;
  gap: 14px;
}

.mini-stats div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(60, 28, 22, 0.08);
}

.mini-stats strong {
  font-size: 1rem;
}

.mini-stats span {
  color: var(--muted);
  text-align: left;
}

.section {
  margin-top: 32px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.intro-grid,
.highlight,
.contact-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.list-card,
.contact-card,
.highlight-panel {
  border-radius: 28px;
  padding: 28px;
}

.feature-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 800;
}

.feature-card p,
.highlight-panel p,
.list-card p,
.contact-card p {
  margin: 12px 0 0;
  line-height: 1.9;
}

.highlight {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  align-items: start;
}

.highlight-panel {
  background:
    linear-gradient(140deg, rgba(210, 76, 63, 0.95), rgba(244, 163, 64, 0.92)),
    var(--surface);
  color: #fff;
}

.highlight-panel .eyebrow,
.highlight-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.highlight-list {
  display: grid;
  gap: 18px;
}

.list-card strong {
  font-size: 1.1rem;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card-wide {
  grid-column: span 2;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 10px 8px 0;
  border-top: 1px solid rgba(115, 68, 53, 0.12);
}

@media (max-width: 960px) {
  .hero-grid,
  .highlight,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-wide {
    grid-column: auto;
  }

  .hero-copy,
  .hero-card {
    padding: 28px;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
  }

  .topbar,
  .footer,
  .mini-stats div {
    flex-direction: column;
    align-items: stretch;
  }

  .mini-stats span {
    text-align: right;
  }

  .hero-copy,
  .hero-card,
  .feature-card,
  .list-card,
  .contact-card,
  .highlight-panel {
    border-radius: 24px;
    padding: 22px;
  }

  .candy-scene {
    height: 190px;
  }

  .candy-one {
    right: 36px;
    width: 92px;
    height: 42px;
  }

  .candy-two {
    top: 112px;
    right: 142px;
    width: 78px;
    height: 38px;
  }

  .candy-three {
    top: 124px;
    right: 42px;
    width: 68px;
    height: 68px;
  }

  .candy-four {
    top: 32px;
    right: 168px;
    width: 56px;
    height: 56px;
  }
}
