@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #0B0B0A;
  --black-soft: #11100E;
  --cream: #F1EDE5;
  --text-light: #E8E1D2;
  --text-muted: #A8A095;
  --gold: #B9964B;
  --gold-soft: #A78642;
  --border-dark: #252320;
  --border-light: #E2DDD6;
  --text-dark: #1A1713;
  --font: 'Vazirmatn', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; font-family: var(--font); font-size: 16px; }
body { background: var(--cream); color: var(--text-dark); line-height: 1.8; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── HEADER ── */
.taraz-header {
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  z-index: 100;
}
.taraz-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}
.taraz-logo {
  font-family: 'Scheherazade New', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
}
.taraz-logo-img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: normal;
}
.gh-head-logo {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}
.taraz-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.taraz-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.taraz-nav a:hover { color: var(--text-light); }
.taraz-nav .nav-cta a {
  color: var(--gold-soft);
  border: 1px solid var(--border-dark);
  padding: 5px 14px;
  border-radius: 1px;
}
.taraz-nav .nav-cta a:hover { border-color: var(--gold-soft); color: var(--gold); }

/* ── HERO ── */
.taraz-hero {
  background: var(--black);
  padding: 2.25rem 2rem 1.75rem;
  border-bottom: 1px solid var(--border-dark);
}
.taraz-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.taraz-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-dark);
  padding: 5px 18px;
  border-radius: 1px;
}
.taraz-hero-title {
  font-size: clamp(1.6rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  word-spacing: 0.05em;
}
.taraz-hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.9;
  max-width: 540px;
  margin: 0 auto 1.5rem;
}
.taraz-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.taraz-tag {
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border-dark);
  padding: 4px 14px;
  border-radius: 1px;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.taraz-tag:hover { color: var(--gold-soft); border-color: var(--gold-soft); }
.taraz-cta-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.taraz-subscribe-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.taraz-subscribe-form input {
  flex: 1;
  background: var(--black-soft);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 11px 16px;
  font-family: var(--font);
  font-size: 13px;
  border-radius: 1px;
  outline: none;
  direction: ltr;
  text-align: right;
}
.taraz-subscribe-form input::placeholder { color: var(--text-muted); }
.taraz-subscribe-form input:focus { border-color: var(--gold-soft); }
.taraz-btn {
  background: var(--gold-soft);
  color: var(--black);
  border: none;
  padding: 11px 20px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  border-radius: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.taraz-btn:hover { background: var(--gold); }

/* ── MEASURES STRIP ── */
.taraz-measures {
  background: var(--black-soft);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.25rem 2rem;
}
.taraz-measures-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.taraz-measures-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
}
.taraz-measures-items {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid #1e1c1a;
  padding-top: 0.6rem;
}
.taraz-measure-item {
  list-style: none;
  color: #6a6560;
  padding: 3px 14px;
  border-left: 1px solid #252320;
  letter-spacing: 0.06em;
  line-height: 1;
  font-size: 11px;
  font-weight: 300;
  cursor: default;
}
.taraz-measure-item:first-child { border-left: none; }
.taraz-measure-item a { color: #6a6560; pointer-events: none; }

@media (max-width: 768px) {
  .taraz-measures-inner { gap: 0.6rem; }
  .taraz-measures-label { padding-bottom: 0.4rem; }
  .taraz-measures-items {
  padding: 0;
  margin: 0; flex-wrap: wrap; }
  .taraz-measure-item {
  list-style: none; font-size: 11px; padding: 4px 10px; }
}

/* ── MAIN ── */
.taraz-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem;
}

/* ── SECTION LABEL ── */
.taraz-section-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.taraz-section-label::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--gold-soft);
  display: inline-block;
  flex-shrink: 0;
}

/* ── STATIC CONTENT CARDS ── */
.taraz-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  margin-bottom: 3rem;
}
.taraz-content-card {
  background: var(--cream);
  padding: 1.75rem;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.taraz-content-card:hover { background: #e8e3db; }
.taraz-content-card-type {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.taraz-content-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
  word-spacing: 0.04em;
}
.taraz-content-card-desc {
  font-size: 13px;
  color: #5a554e;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
  flex: 1;
}
.taraz-content-card-cta {
  font-size: 12px;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color 0.2s;
}
.taraz-content-card-cta:hover { border-color: var(--gold-soft); }

/* ── POST GRID (for real posts) ── */
.taraz-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
}
.taraz-post-card {
  background: var(--cream);
  padding: 1.75rem;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.taraz-post-card:hover { background: #e8e3db; }
.taraz-post-card-type {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.taraz-post-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.taraz-post-card-excerpt {
  font-size: 13px;
  color: #5a554e;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.taraz-post-card-meta {
  font-size: 11px;
  color: #9a9590;
  letter-spacing: 0.03em;
}

/* ── METHOD BLOCK ── */
.taraz-method-block {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 1.25rem 2rem;
  margin-bottom: 1.25rem;
}
.taraz-method-block-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.75rem;
  align-items: center;
}
.taraz-method-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.taraz-method-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.taraz-method-desc {
  font-size: 12px;
  color: #6a6560;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0;
}
.taraz-method-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.3rem;
  align-items: center;
  overflow: visible;
}
@media (max-width: 768px) {
  .taraz-method-chips { flex-wrap: wrap; }
}
.taraz-method-chip {
  font-size: 11px;
  border: 1px solid #ccc8c0;
  padding: 4px 11px;
  color: #5e5a54;
  letter-spacing: 0.04em;
  border-radius: 1px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.4;
}

/* ── BRIEFING CTA ── */
.taraz-briefings-cta {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-right: 1.5px solid var(--gold-soft);
  padding: 1.1rem 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.taraz-briefings-cta-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
.taraz-briefings-cta-text p {
  font-size: 13px;
  color: #6a6560;
  font-weight: 300;
  line-height: 1.6;
}
.taraz-btn-outline {
  background: transparent;
  border: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  padding: 9px 22px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  border-radius: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  letter-spacing: 0.03em;
  display: inline-block;
}
.taraz-btn-outline:hover { background: var(--gold-soft); color: var(--black); }

/* ── SINGLE POST ── */
.taraz-post-header {
  background: var(--black);
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--border-dark);
}
.taraz-post-header-inner { max-width: 720px; margin: 0 auto; }
.taraz-post-type-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.taraz-post-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.taraz-post-excerpt {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.taraz-post-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-dark);
  padding-top: 1rem;
}
.taraz-post-content { max-width: 720px; margin: 3rem auto; padding: 0 2rem; }
.taraz-post-content p { font-size: 17px; line-height: 2; color: #2a2620; font-weight: 300; margin-bottom: 1.5rem; }
.taraz-post-content h2 { font-size: 20px; font-weight: 700; margin: 2.5rem 0 1rem; letter-spacing: 0.02em; }
.taraz-post-content h3 { font-size: 17px; font-weight: 500; margin: 2rem 0 0.75rem; }
.taraz-post-content blockquote { border-right: 2px solid var(--gold-soft); padding: 1rem 1.5rem; margin: 2rem 0; background: #e8e3db; font-size: 15px; color: #4a4540; }
.taraz-post-content ul, .taraz-post-content ol { padding-right: 1.5rem; margin-bottom: 1.5rem; }
.taraz-post-content li { font-size: 16px; line-height: 1.9; margin-bottom: 0.5rem; font-weight: 300; }
.taraz-post-content a { color: var(--gold-soft); border-bottom: 1px solid var(--border-light); transition: border-color 0.2s; }
.taraz-post-content a:hover { border-color: var(--gold-soft); }

/* ── FOOTER ── */
.taraz-footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 2.5rem 2rem 1.75rem;
  margin-top: 3rem;
}
.taraz-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.taraz-footer-logo { font-size: 18px; font-weight: 700; color: var(--gold-soft); margin-bottom: 0.75rem; }
.taraz-footer-brand p { font-size: 13px; color: #5a5550; line-height: 1.8; font-weight: 300; max-width: 260px; }
.taraz-footer-nav h4 { font-size: 10px; letter-spacing: 0.14em; color: var(--gold-soft); text-transform: uppercase; margin-bottom: 0.875rem; opacity: 0.8; }
.taraz-footer-nav ul { list-style: none; }
.taraz-footer-nav ul li { margin-bottom: 0.6rem; }
.taraz-footer-nav ul li a { font-size: 13px; color: #706b65; transition: color 0.2s; font-weight: 300; letter-spacing: 0.01em; }
.taraz-footer-nav ul li a:hover { color: var(--text-light); }
.taraz-footer-nav ul li { margin-bottom: 0.5rem; }
.taraz-footer-bottom {
  max-width: 1100px;
  margin: 1.75rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid #1e1c1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #5a5550;
  letter-spacing: 0.04em;
}

/* ── KG CLASSES ── */
.kg-width-wide { width: 100%; }
.kg-width-full { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.kg-image { max-width: 100%; }
.kg-image-card { margin: 1.5rem 0; }
.kg-embed-card { display: flex; flex-direction: column; align-items: center; margin: 1.5rem 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  /* Header */
  .taraz-header-inner { padding: 0 1.25rem; }
  .taraz-logo-img { height: 24px !important; }
  .taraz-nav { display: none; }

  /* Hero — tighter on mobile */
  .taraz-hero { padding: 2rem 1.25rem 1.75rem; }
  .taraz-hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem) !important; line-height: 1.4; }
  .taraz-hero-desc { font-size: 13.5px; margin-bottom: 1.25rem; line-height: 1.75; text-align: center; max-width: 90%; margin-left: auto; margin-right: auto; }
  .taraz-hero-eyebrow { margin-bottom: 1rem; }
  .taraz-cta-label { font-size: 11px; margin-bottom: 0.5rem; }

  /* Subscribe form — stacked */
  .taraz-subscribe-form { flex-direction: column; gap: 0.5rem; }
  .taraz-subscribe-form input { width: 100%; text-align: right; }
  .taraz-btn { width: 100%; text-align: center; padding: 12px; }

  /* Taxonomy — 2-row wrap on mobile */
  .taraz-measures { padding: 1rem 1.25rem; }
  .taraz-measures-inner { gap: 0.5rem; }
  .taraz-measures-label { font-size: 10px; }
  .taraz-measures-items {
  padding: 0;
  margin: 0;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid #1e1c1a;
    padding-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .taraz-measure-item {
  list-style: none;
    font-size: 11px;
    padding: 5px 8px;
    border-left: none !important;
    border-bottom: 1px solid #1e1c1a;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .taraz-measure-item:nth-child(n+5) { border-bottom: none; }

  /* Main */
  .taraz-main { padding: 1.75rem 1.25rem; }

  /* Content cards — compact */
  .taraz-content-grid { grid-template-columns: 1fr; }
  .taraz-content-card {
    padding: 1.25rem 1.25rem;
    border-left: none !important;
    border-top: 1px solid var(--border-light);
  }
  .taraz-content-card:first-child { border-top: none; }
  .taraz-content-card-title { font-size: 16px; }
  .taraz-content-card-desc { font-size: 13px; }

  /* Post grid */
  .taraz-post-grid { grid-template-columns: 1fr; }

  /* Black manifesto — compact */
  .taraz-positioning { padding: 1.25rem; }
  .taraz-positioning-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .taraz-positioning-not {
    border-right: none;
    padding-right: 0;
    border-top: 1px solid #1e1c1a;
    padding-top: 1.25rem;
  }
  .taraz-positioning-text { font-size: 13px; line-height: 1.7; }
  .taraz-positioning-list li { padding: 0.35rem 0; font-size: 12px; }

  /* Trust section — compact */
  .taraz-trust-section { margin-bottom: 1.25rem; }
  .taraz-trust-item { padding: 0.85rem 1.25rem; }
  .taraz-trust-item-desc { font-size: 12px; }
  .taraz-trust-item-title { font-size: 13px; margin-bottom: 0.3rem; }

  /* Method block */
  .taraz-method-block { padding: 1.25rem; }
  .taraz-method-block-inner { grid-template-columns: 1fr; gap: 1rem; }
  .taraz-method-title { font-size: 16px; }
  .taraz-method-desc { font-size: 12px; }
  .taraz-method-chips {
    flex-wrap: wrap;
    gap: 0.35rem;
    flex-direction: row;
  }
  .taraz-method-chip {
    font-size: 11px;
    padding: 4px 10px;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  /* Briefing CTA — stacked, compact */
  .taraz-briefings-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 0;
  }
  .taraz-briefings-cta-text h3 { font-size: 15px; }
  .taraz-briefings-cta-text p { font-size: 13px; }
  .taraz-btn-outline { width: 100%; text-align: center; }

  /* Footer */
  .taraz-footer { padding: 2rem 1.25rem 1.5rem; margin-top: 1.5rem; }
  .taraz-footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .taraz-footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    font-size: 11px;
    color: #6a6560;
  }
  .taraz-footer-logo { font-size: 16px; }
  .taraz-footer-brand p { font-size: 12px; max-width: 100%; color: #6a6560; }
  .taraz-footer-nav ul li a { font-size: 13px; color: #8a8580; }
}

/* ── TRUST SECTION ── */
.taraz-trust-section > .taraz-section-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-light);
}
.taraz-trust-section {
  margin-bottom: 2rem;
}
.taraz-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e8e3db;
}
.taraz-trust-item {
  background: var(--cream);
  padding: 1rem 1.5rem;
  transition: background 0.2s;
  display: block;
  text-decoration: none;
  border-left: 1px solid #e8e3db;
}
.taraz-trust-item:first-child { border-left: none; }
.taraz-trust-item:hover { background: #ece8e1; }
.taraz-trust-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.taraz-trust-item-desc {
  font-size: 12px;
  color: #5a554e;
  line-height: 1.7;
  font-weight: 300;
}
.taraz-trust-item-title::before {
  content: '';
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--gold-soft);
  margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
  .taraz-trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .taraz-trust-grid { grid-template-columns: 1fr; }
}

/* ── POSITIONING SECTION ── */
.taraz-positioning {
  background: var(--black-soft);
  border-bottom: 1px solid var(--border-dark);
  padding: 2rem 2rem;
}
.taraz-positioning-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}
.taraz-positioning-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.taraz-positioning-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
}
.taraz-positioning-not {
  border-right: 1px solid #1e1c1a;
  padding-right: 1.5rem;
}
.taraz-positioning-list {
  list-style: none;
  padding: 0;
}
.taraz-positioning-list li {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  padding: 0.4rem 0;
  border-bottom: 1px solid #1a1815;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}
.taraz-positioning-list li:last-child { border-bottom: none; }
.taraz-positioning-list li::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--gold-soft);
  opacity: 0.4;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .taraz-positioning-inner { grid-template-columns: 1fr; gap: 2rem; }
  .taraz-positioning-not { border-right: none; padding-right: 0; border-top: 1px solid var(--border-dark); padding-top: 1.5rem; }
}

/* ── METHOD PAGE ── */
.taraz-method-section--primary .taraz-method-section-title {
  font-size: 17px;
  font-weight: 700;
  border-bottom: 1.5px solid var(--gold-soft);
  padding-bottom: 0.5rem;
  display: inline-block;
}
.taraz-page-header {
  background: var(--black);
  padding: 3rem 2rem 2.5rem;
  border-bottom: 1px solid var(--border-dark);
}
.taraz-page-header-inner {
  max-width: 720px;
  margin: 0 auto;
}
.taraz-page-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.taraz-page-lead {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.9;
  max-width: 640px;
}
.taraz-method-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 2rem 3rem;
}
.taraz-method-statement {
  border-right: 1.5px solid var(--gold-soft);
  padding-right: 1.5rem;
  margin-bottom: 1.75rem;
}
.taraz-method-statement p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.9;
  font-weight: 400;
}
.taraz-method-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
}
.taraz-method-section:last-of-type {
  border-bottom: none;
}
.taraz-method-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
  letter-spacing: 0.01em;
}
.taraz-method-section-text {
  font-size: 15px;
  color: #4a4540;
  line-height: 1.9;
  font-weight: 300;
}
.taraz-method-link {
  display: inline-block;
  margin-top: 0.875rem;
  font-size: 13px;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.taraz-method-link:hover {
  border-color: var(--gold-soft);
}

/* Method cards — 6 items in 2 columns */
.taraz-method-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #c8c3bb;
  margin-top: 0.875rem;
}
.taraz-method-card-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ddd8d0;
  border-left: 1px solid #ddd8d0;
}
.taraz-method-card-item:nth-child(odd) {
  border-left: none;
}
.taraz-method-card-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.taraz-method-card-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.taraz-method-card-text {
  font-size: 12px;
  color: #5a554e;
  line-height: 1.65;
  font-weight: 300;
}

/* Final CTA */
.taraz-method-cta {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-right: 1.5px solid var(--gold-soft);
  padding: 1.25rem 1.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.taraz-method-cta-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.taraz-method-cta-text {
  font-size: 14px;
  color: #6a6560;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

/* Method page mobile */
@media (max-width: 768px) {
  .taraz-page-header { padding: 2rem 1.25rem 1.75rem; }
  .taraz-method-body { padding: 2rem 1.25rem; }
  .taraz-method-cards { grid-template-columns: 1fr; }
  .taraz-method-card-item { border-left: none !important; }
  .taraz-method-card-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-light); }
  .taraz-method-card-item:last-child { border-bottom: none; }
  .taraz-method-section-text { font-size: 14px; }
  .taraz-method-cta { padding: 1.25rem; }
}

/* ── PROCESS STEPS ── */
.taraz-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid #e0dbd3;
  border-bottom: 1px solid #e0dbd3;
}
.taraz-process-step {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #edeae4;
  transition: background 0.2s;
}
.taraz-process-step:last-child { border-bottom: none; }
.taraz-process-step:hover { background: transparent; }
.taraz-process-step:hover { background: #ece8e1; }
.taraz-process-num {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  min-width: 18px;
  padding-top: 3px;
  flex-shrink: 0;
  opacity: 0.8;
}
.taraz-process-content { flex: 1; }
.taraz-process-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}
.taraz-process-text {
  font-size: 12px;
  color: #7a7570;
  line-height: 1.55;
  font-weight: 300;
}

/* ── PRINCIPLES GRID ── */
.taraz-principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e8e3db;
  margin-top: 1rem;
}
.taraz-principle-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ece8e1;
  border-left: 1px solid #ece8e1;
}
.taraz-principle-item:nth-child(odd) { border-left: none; }
.taraz-principle-item:nth-last-child(-n+2) { border-bottom: none; }
.taraz-principle-title {
  font-size: 12px;
  font-weight: 600;
  color: #3a3530;
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.taraz-principle-text {
  font-size: 12px;
  color: #7a7570;
  line-height: 1.65;
  font-weight: 300;
  text-align: right;
}

/* Fix body text alignment — right not center */
.taraz-method-body { text-align: right; }
.taraz-method-statement p { text-align: right; max-width: 680px; }
.taraz-method-section-text { text-align: right; }
.taraz-method-section-title { text-align: right; }
.taraz-method-cta-title { text-align: right; }
.taraz-method-cta-text { text-align: right; }
.taraz-page-lead { text-align: center; }

/* Reduce spacing */
.taraz-method-section { margin-bottom: 1.5rem; padding-bottom: 1.5rem; }
.taraz-method-body { padding: 1.75rem 2rem 2rem; }

@media (max-width: 768px) {
  .taraz-principles-grid { grid-template-columns: 1fr; }
  .taraz-principle-item { border-left: none !important; }
  .taraz-principle-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-light); }
  .taraz-principle-item:last-child { border-bottom: none; }
  .taraz-process-step { padding: 0.875rem 1.25rem; gap: 1rem; }
}

/* ── AI POLICY LIST ── */
.taraz-ai-list {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}
.taraz-ai-list li {
  font-size: 13px;
  color: #5a554e;
  font-weight: 300;
  padding: 0.4rem 0;
  border-bottom: 1px solid #ece8e1;
  line-height: 1.6;
  text-align: right;
}
.taraz-ai-list li:last-child { border-bottom: none; }

/* ── ABOUT CTA ── */
.taraz-about-cta {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-right: 1.5px solid var(--gold-soft);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}
.taraz-about-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .taraz-about-cta-buttons { flex-direction: column; }
  .taraz-about-cta-buttons a { text-align: center; width: 100%; }
}

/* ── AUDIENCE LIST ── */
.taraz-audience-list {
  margin-top: 1rem;
  border: 1px solid var(--border-light);
}
.taraz-audience-item {
  font-size: 14px;
  color: #4a4540;
  font-weight: 400;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  text-align: right;
  line-height: 1.6;
}
.taraz-audience-item:last-child { border-bottom: none; }

/* Footer bottom fix */
.taraz-footer-bottom {
  max-width: 1100px;
  margin: 1.75rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid #1e1c1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #5a5550;
  letter-spacing: 0.04em;
}

/* ── FOOTER TAGLINE ── */
.taraz-footer-tagline {
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
  color: var(--gold-soft) !important;
  opacity: 0.6;
  text-transform: uppercase;
}

/* ── AUDIENCE LIST FIX ── */
.taraz-audience-list {
  margin-top: 1rem !important;
  border: 1px solid var(--border-light) !important;
  display: block !important;
}
.taraz-audience-item {
  font-size: 14px !important;
  color: #4a4540 !important;
  font-weight: 400 !important;
  padding: 0.875rem 1.25rem !important;
  border-bottom: 1px solid var(--border-light) !important;
  text-align: right !important;
  line-height: 1.6 !important;
  display: block !important;
}
.taraz-audience-item:last-child { border-bottom: none !important; }

/* ── BRIEFING TOPICS ── */
.taraz-briefing-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border-light);
  margin-top: 1rem;
}
.taraz-briefing-topic {
  font-size: 12px;
  color: #5a554e;
  font-weight: 300;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
  letter-spacing: 0.02em;
  width: 50%;
  box-sizing: border-box;
}
.taraz-briefing-topic:nth-child(odd) { border-left: none; }
.taraz-briefing-topic:nth-last-child(-n+2) { border-bottom: none; }

@media (max-width: 768px) {
  .taraz-briefing-topic { width: 100%; border-left: none !important; }
  .taraz-briefing-topic:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-light); }
  .taraz-briefing-topic:last-child { border-bottom: none; }
}

/* ── FOOTER BOTTOM FINAL FIX ── */
.taraz-footer-bottom {
  max-width: 1100px;
  margin: 1.75rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid #1e1c1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #5a5550;
  letter-spacing: 0.04em;
}
.taraz-footer-tagline {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  opacity: 0.6;
  text-transform: uppercase;
  font-style: normal;
}

/* ── BRIEFINGS TOPIC GRID ── */
.taraz-method-section .taraz-method-cards {
  border-color: #ddd8d0;
}
.taraz-method-section .taraz-method-card-item {
  border-bottom-color: #e8e4de;
  border-left-color: #e8e4de;
  padding: 0.875rem 1.25rem;
}

/* Process steps — tighter for briefings */
.taraz-method-page .taraz-process-step {
  padding: 0.6rem 0;
}

/* ── CONTACT PAGE ── */
.taraz-contact-form-wrapper {
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  background: var(--cream);
}
.taraz-contact-notes {
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  margin-top: 1rem;
}
.taraz-contact-note {
  font-size: 13px;
  color: #6a6560;
  line-height: 1.75;
  font-weight: 300;
  text-align: right;
}

@media (max-width: 768px) {
  .taraz-contact-form-wrapper { padding: 1rem; }
}

/* ── CONTACT FORM ── */
.taraz-contact-form {
  margin-bottom: 2rem;
}
.taraz-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.taraz-form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.taraz-form-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-weight: 500;
}
.taraz-form-input,
.taraz-form-select,
.taraz-form-textarea {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  font-size: 14px;
  color: var(--text-dark);
  font-family: inherit;
  direction: rtl;
  text-align: right;
  border-radius: 1px;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.taraz-form-input:focus,
.taraz-form-select:focus,
.taraz-form-textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
}
.taraz-form-input::placeholder,
.taraz-form-textarea::placeholder {
  color: #9a9590;
  font-weight: 300;
}
.taraz-form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}
.taraz-form-select {
  cursor: pointer;
}
.taraz-form-consent {
  margin-bottom: 1.5rem;
}
.taraz-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 13px;
  color: #5a554e;
  font-weight: 300;
  line-height: 1.6;
}
.taraz-form-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold-soft);
}
.taraz-form-submit {
  margin-top: 0.5rem;
}
.taraz-form-success {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-right: 1.5px solid var(--gold-soft);
  padding: 1.5rem;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  text-align: right;
}
.taraz-contact-notes {
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  margin-top: 1rem;
}
.taraz-contact-note {
  font-size: 13px;
  color: #6a6560;
  line-height: 1.75;
  font-weight: 300;
  text-align: right;
}

@media (max-width: 768px) {
  .taraz-form-row { grid-template-columns: 1fr; }
}

/* ── PRIVACY LIST ── */
.taraz-privacy-list {
  list-style: none;
  padding: 0;
  margin-top: 0.875rem;
  border: 1px solid var(--border-light);
}
.taraz-privacy-list li {
  font-size: 13px;
  color: #5a554e;
  font-weight: 300;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  text-align: right;
  line-height: 1.65;
}
.taraz-privacy-list li:last-child { border-bottom: none; }

/* Footer bottom final */
.taraz-footer-bottom {
  max-width: 1100px;
  margin: 1.75rem auto 0 !important;
  padding-top: 1.25rem !important;
  border-top: 1px solid #1e1c1a !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 11px !important;
  color: #5a5550 !important;
  letter-spacing: 0.04em !important;
}

/* ── FOOTER BOTTOM 3 ITEMS ── */
.taraz-footer-bottom {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
}
.taraz-footer-bottom > span:first-child { text-align: right; }
.taraz-footer-bottom > span:nth-child(2) { text-align: center; }
.taraz-footer-bottom > span:last-child { text-align: left; }

@media (max-width: 768px) {
  .taraz-footer-bottom {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 0.4rem !important;
  }
  .taraz-footer-bottom > span { text-align: center !important; }
}

/* ── FOOTER BOTTOM QA FIX ── */
.taraz-footer-bottom {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 0 !important;
}
.taraz-footer-bottom > span:nth-child(1) { text-align: right !important; }
.taraz-footer-bottom > span:nth-child(2) { text-align: center !important; }
.taraz-footer-bottom > span:nth-child(3) { text-align: left !important; }
@media (max-width: 768px) {
  .taraz-footer-bottom {
    grid-template-columns: 1fr !important;
    gap: 0.4rem !important;
  }
  .taraz-footer-bottom > span { text-align: center !important; }
}

/* ── HERO PRIVACY MICROCOPY ── */
.taraz-hero-privacy {
  font-size: 11px;
  color: rgba(232, 225, 210, 0.45);
  text-align: center;
  margin-top: 0.625rem;
  letter-spacing: 0.02em;
  font-weight: 300;
}
.taraz-hero-privacy a {
  color: rgba(232, 225, 210, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 225, 210, 0.25);
  transition: border-color 0.2s;
}
.taraz-hero-privacy a:hover {
  border-color: rgba(232, 225, 210, 0.6);
}

/* ── ARCHIVE PAGES ── */
.taraz-archive-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
}
.taraz-archive-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}
.taraz-archive-item:last-child { border-bottom: none; }
.taraz-archive-item:hover { background: rgba(185,150,75,0.04); }
.taraz-archive-item-inner {
  padding: 1.25rem 1.5rem;
}
.taraz-archive-type {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.taraz-archive-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.taraz-archive-excerpt {
  font-size: 13px;
  color: #6a6560;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.taraz-archive-meta time {
  font-size: 11px;
  color: #9a9590;
  letter-spacing: 0.04em;
}
.taraz-archive-read {
  font-size: 11px;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  margin-top: 0.625rem;
}

/* ── POST PAGE ── */
.taraz-post-page { direction: rtl; }
.taraz-post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
}

/* ── METHOD CARD BLOCK ── */
.taraz-method-card-block {
  border: 1px solid var(--border-light);
  border-right: 1.5px solid var(--gold-soft);
  margin-bottom: 2.5rem;
  background: var(--cream);
}
.taraz-method-card-block-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 1.25rem 0;
}
.taraz-method-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.taraz-method-card-cell {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}
.taraz-method-card-cell:nth-child(3n+1) { border-left: none; }
.taraz-method-card-cell-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #9a9590;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.taraz-method-card-cell-value {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 400;
}
.taraz-method-card-cell-placeholder {
  color: #9a9590;
  font-weight: 300;
  font-size: 12px;
}

/* ── POST CONTENT ── */
.taraz-post-content {
  font-size: 16px;
  line-height: 1.85;
  color: #2a2520;
  font-weight: 300;
}
.taraz-post-content h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 2rem 0 0.875rem;
  letter-spacing: 0.01em;
}
.taraz-post-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.5rem 0 0.625rem;
}
.taraz-post-content p { margin-bottom: 1.25rem; }
.taraz-post-content a { color: var(--gold-soft); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.taraz-post-content a:hover { border-color: var(--gold-soft); }
.taraz-post-content blockquote {
  border-right: 2px solid var(--gold-soft);
  padding-right: 1.25rem;
  margin: 1.5rem 0;
  color: #5a554e;
  font-style: normal;
}
.taraz-post-content strong { font-weight: 600; }

.taraz-post-footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .taraz-post-body { padding: 1.5rem 1.25rem 2.5rem; }
  .taraz-method-card-grid { grid-template-columns: 1fr 1fr; }
  .taraz-method-card-cell:nth-child(3n+1) { border-left: 1px solid var(--border-light); }
  .taraz-method-card-cell:nth-child(2n+1) { border-left: none; }
}
