/* ===========================
   NASHIR — THEME CSS
   =========================== */

:root {
  --bg: #F8F3EE;
  --fg: #1C1917;
  --accent: #C4522A;
  --accent-warm: #E8933A;
  --accent-light: #F2D4C4;
  --surface: #FFFFFF;
  --text-secondary: #6B5F54;
  --border: #E8DED4;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 40px 80px;
  background: var(--bg);
}

.manifesto__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.manifesto__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.manifesto__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.manifesto__headline em {
  font-style: italic;
  color: var(--accent);
}

.manifesto__body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 28px;
}

.manifesto__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.manifesto__cta:hover { opacity: 0.85; text-decoration: none; }

.manifesto__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.manifesto__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* ── HOW IT WORKS ── */
.how {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.how__header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.how__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.how__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
}

.how__steps {
  max-width: 980px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 32px;
  text-align: center;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.step__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.step__body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step__divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin-top: 8px;
  flex-shrink: 0;
}

.how__image-wrap {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
}

.how__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── ADVANTAGES ── */
.advantages {
  padding: 80px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.advantages__header {
  text-align: center;
  margin-bottom: 48px;
}

.advantages__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--fg);
}

.advantage-grid {
  max-width: 1000px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.advantage { text-align: left; }

.advantage__icon {
  margin-bottom: 14px;
}

.advantage__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.advantage__body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.advantages__image-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  position: relative;
}

.advantages__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advantages__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(28,25,23,0.7));
}

.advantages__caption-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(248,243,238,0.9);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 40px;
  background: var(--fg);
  color: var(--bg);
}

.closing__inner { max-width: 860px; margin: 0 auto; text-align: center; }


.closing__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 20px;
}

.closing__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--bg);
  margin-bottom: 20px;
}

.closing__body {
  font-size: 1rem;
  color: rgba(248,243,238,0.65);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 56px;
}

.closing__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat__number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.78rem;
  color: rgba(248,243,238,0.5);
  line-height: 1.4;
  max-width: 120px;
}

.closing__vision {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(248,243,238,0.7);
}

/* ── FOOTER ── */
.footer {
  padding: 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.footer__note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: right;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .manifesto { padding: 56px 24px; }
  .manifesto__inner { grid-template-columns: 1fr; gap: 36px; }
  .manifesto__body { max-width: 100%; }

  .how { padding: 56px 24px; }
  .how__steps { flex-direction: column; gap: 32px; }
  .step { padding: 0; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step__divider { display: none; }
  .step__number { font-size: 1.6rem; margin-bottom: 0; }

  .advantages { padding: 56px 24px; }
  .advantage-grid { grid-template-columns: 1fr; }

  .closing { padding: 72px 24px; }
  .closing__stats { gap: 32px; }

  .footer { padding: 32px 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__note { text-align: left; }
}

@media (max-width: 480px) {
  .stat__number { font-size: 1.6rem; }
  .stat__label { max-width: 90px; }
}