:root {
  --primary: #c0392b;
  --secondary: #f39c12;
  --accent: #ffd166;
  --dark: #1a1a1a;
  --light: #ffffff;
  --muted: #666666;
  --bg-soft: #fff7ef;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Roboto", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: #fffdfb;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.2rem;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.section-heading p {
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
}

.brand {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
}

.site-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-link:hover {
  border-color: var(--secondary);
  color: #d68910;
}

.menu-toggle {
  display: inline-flex;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 1rem 1.4rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.nav-links.show {
  display: flex;
}

.nav-links a {
  padding: 0.55rem 0;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: #1a1108;
  background-image: url("https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(25, 17, 8, 0.82), rgba(192, 57, 43, 0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--light);
}

.hero-tag {
  display: inline-block;
  background: rgba(243, 156, 18, 0.2);
  border: 1px solid rgba(255, 209, 102, 0.6);
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.15;
  max-width: 680px;
}

.hero-subtitle {
  margin: 1rem 0 1rem;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.hero-chip {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 209, 102, 0.45);
  color: #fff8e7;
}

.hero-quote {
  max-width: 520px;
  margin-bottom: 1.25rem;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 248, 231, 0.98);
  font-weight: 500;
}

.hero-quote-en {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82em;
  font-weight: 400;
  opacity: 0.88;
  font-style: italic;
}

.regions-section {
  background: linear-gradient(180deg, #fffdfb 0%, var(--bg-soft) 45%, #fffdfb 100%);
  padding-top: 3rem;
}

.investment-banner {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.95), rgba(243, 156, 18, 0.88));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.investment-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  opacity: 0.95;
  margin-bottom: 0.65rem;
}

.investment-hindi {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.investment-hindi strong {
  color: var(--accent);
}

.investment-en {
  font-size: 0.92rem;
  opacity: 0.94;
  line-height: 1.55;
  margin: 0;
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.region-card h3 {
  color: var(--primary);
}

.region-state {
  font-weight: 600;
  font-size: 0.92em;
  color: var(--muted);
}

.region-jump {
  margin-top: 0.65rem;
  font-size: 0.88rem;
}

.region-jump a {
  color: var(--primary);
  font-weight: 600;
}

.region-jump a:hover {
  text-decoration: underline;
}

.dholera-spotlight {
  margin-top: 2.5rem;
  background: #fff;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  border: 1px solid #f0e4d4;
  overflow: hidden;
}

.dholera-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.dholera-spotlight-copy {
  padding: 1.5rem 1.25rem 1.75rem;
}

.dholera-spotlight-visual {
  background: linear-gradient(145deg, #f8f9fc, #fff7ef);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.dholera-spotlight-visual img {
  max-height: min(72vh, 520px);
  width: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.dholera-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.dholera-spotlight-copy h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.dholera-taglines {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.65rem;
  line-height: 1.55;
}

.dholera-vision {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.96rem;
}

.dholera-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.dholera-pills li {
  background: var(--bg-soft);
  border: 1px solid #edd9c4;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5c4030;
}

.dholera-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dholera-stats > div {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.06), rgba(243, 156, 18, 0.08));
  border-radius: 12px;
  padding: 0.85rem;
  border: 1px solid rgba(243, 156, 18, 0.22);
}

.stat-value {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.brochure-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.references-section {
  background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
}

.reference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.reference-card {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eee6dc;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.reference-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: #f4f4f4;
  border-radius: 0;
}

.reference-card figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid #f0e8df;
}

.footer-regions {
  font-size: 0.88rem;
  opacity: 0.92;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #e74c3c);
  color: #fff;
}

.btn-outline {
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.pricing-section {
  background: radial-gradient(circle at top right, rgba(255, 209, 102, 0.3), transparent 40%), #fff;
}

.pricing-card {
  text-align: center;
  background: #fff;
  padding: 2rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
}

.pricing-card .label {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin: 0.5rem 0;
}

.pricing-card h3 span {
  font-size: 1rem;
  color: var(--muted);
}

.original-price {
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.card-grid,
.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  background: #fff;
  border: 1px solid #f2e8da;
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.45rem;
}

.alt-bg {
  background: var(--bg-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.feature-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateX(4px);
}

.icon {
  font-size: 1.4rem;
}

.advantage-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.advantage-list li {
  background: #fff;
  border: 1px solid #f5e3cd;
  border-radius: 10px;
  padding: 0.8rem 1rem;
}

.advantage-list li::before {
  content: "✔";
  margin-right: 0.55rem;
  color: var(--primary);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.contact-section {
  background: linear-gradient(180deg, #fffaf5, #fff);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.contact-info,
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.contact-info h2 {
  margin-bottom: 0.8rem;
}

.contact-info p {
  margin-bottom: 0.6rem;
}

.contact-info a {
  color: var(--primary);
}

.contact-form {
  display: grid;
  gap: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #dadada;
  border-radius: 10px;
  padding: 0.75rem 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
}

.footer {
  background: #160f0a;
  color: #f6e8da;
  padding: 1.4rem 0 2rem;
}

.footer-content {
  text-align: center;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer a {
  color: #ffcf8d;
}

.footer-site {
  font-weight: 600;
}

.footer-site a {
  color: #ffd166;
}

.raj-logo {
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.raj-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  border-radius: 4px;
}

.raj-r {
  background: #e74c3c;
}

.raj-a {
  background: #3498db;
}

.raj-j {
  background: #f1c40f;
  color: #1a1a1a;
}

.floating-btn {
  position: fixed;
  right: 14px;
  z-index: 999;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.whatsapp-btn {
  bottom: 78px;
  background: #25d366;
}

.call-btn {
  bottom: 20px;
  background: linear-gradient(135deg, var(--primary), #e74c3c);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    background: transparent;
    gap: 0.9rem;
  }

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

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

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

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

  .contact-layout {
    grid-template-columns: 1.1fr 1fr;
  }

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

  .dholera-spotlight-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .dholera-spotlight-visual {
    padding: 1.25rem;
  }

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

@media (min-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* WordPress / form extras */
.site-logo img {
  max-height: 52px;
  width: auto;
  border-radius: 0;
}

.nav-links .sub-menu {
  list-style: none;
  padding-left: 0.75rem;
}

.form-notice,
.form-status {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}

.form-notice--success,
.form-status.is-success {
  background: #e8f8ef;
  color: #1e7a42;
  border: 1px solid #b7e4c7;
}

.form-notice--error,
.form-status.is-error {
  background: #fdecea;
  color: #a93226;
  border: 1px solid #f5c6cb;
}

.entry-content {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin-bottom: 1rem;
}

.page-featured {
  margin-bottom: 1.5rem;
}

.page-featured img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.cf7-wrap input,
.cf7-wrap textarea {
  width: 100%;
  border: 1px solid #dadada;
  border-radius: 10px;
  padding: 0.75rem 0.8rem;
  font: inherit;
  margin-bottom: 0.5rem;
}

.cf7-wrap .wpcf7-submit {
  display: inline-flex;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), #e74c3c);
  color: #fff;
  cursor: pointer;
}

.footer-social a {
  margin: 0 0.35rem;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.contact-widgets {
  margin-top: 1rem;
}

.pagination {
  margin-top: 2rem;
  text-align: center;
}

/* ==========================================================================
   Blog listing & single post
   ========================================================================== */

.blog-page,
.single-blog {
  background: #fffdfb;
}

.blog-hero {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.28), transparent 42%),
    linear-gradient(180deg, #fff7ef 0%, #fffdfb 100%);
}

.blog-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.adiyogi-breadcrumbs {
  margin-bottom: 1.25rem;
}

.adiyogi-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  align-items: center;
  font-size: 0.86rem;
  color: var(--muted);
}

.adiyogi-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: #c4b5a5;
}

.adiyogi-breadcrumbs a {
  color: var(--primary);
  font-weight: 500;
}

.adiyogi-breadcrumbs a:hover {
  text-decoration: underline;
}

.blog-listing {
  padding-top: 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.blog-card {
  background: #fff;
  border: 1px solid #f0e4d4;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f3ebe2;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}

.blog-card__body {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.7rem;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.1), rgba(243, 156, 18, 0.16));
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blog-badge--light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff8e7;
  border: 1px solid rgba(255, 209, 102, 0.45);
  margin-bottom: 0.85rem;
}

.blog-date {
  font-size: 0.82rem;
  color: var(--muted);
}

.blog-card__title {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}

.blog-card__title a:hover {
  color: var(--primary);
}

.blog-card__excerpt {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 1.1rem;
  flex: 1;
}

.blog-card__cta {
  align-self: flex-start;
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
}

.blog-empty {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px dashed #e7d5c0;
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.blog-empty h2 {
  margin-bottom: 0.5rem;
}

.blog-empty p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.blog-pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links {
  position: static;
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.45rem;
  box-shadow: none;
  background: transparent;
  padding: 0;
  top: auto;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid #edd9c4;
  background: #fff;
  color: #444;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.blog-pagination .page-numbers:hover {
  transform: translateY(-1px);
  color: var(--primary);
  border-color: var(--secondary);
}

.blog-pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--primary), #e74c3c);
  border-color: transparent;
  color: #fff;
}

/* Single post */
.single-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 15, 10, 0.35) 0%, rgba(22, 15, 10, 0.82) 100%);
}

.single-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.single-hero .adiyogi-breadcrumbs,
.single-hero .adiyogi-breadcrumbs a,
.single-hero .adiyogi-breadcrumbs span,
.single-hero .adiyogi-breadcrumbs li:not(:last-child)::after {
  color: rgba(255, 248, 231, 0.88);
}

.single-hero .adiyogi-breadcrumbs a:hover {
  color: var(--accent);
}

.single-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.18;
  margin-bottom: 0.9rem;
  max-width: 18ch;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  font-size: 0.92rem;
  color: rgba(255, 248, 231, 0.9);
}

.single-article {
  padding: 2.5rem 0 1rem;
}

.single-layout {
  display: block;
}

.single-reading {
  max-width: 800px;
  margin: 0 auto;
}

.entry-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #2b2b2b;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin: 1.8rem 0 0.75rem;
  line-height: 1.3;
  color: #1a1a1a;
}

.entry-content h2 {
  font-size: 1.55rem;
}

.entry-content h3 {
  font-size: 1.28rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content table,
.entry-content blockquote,
.entry-content figure {
  margin-bottom: 1.15rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
}

.entry-content li + li {
  margin-top: 0.35rem;
}

.entry-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-content blockquote {
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--secondary);
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
  color: #444;
  font-style: italic;
}

.entry-content img {
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  font-size: 0.95rem;
}

.entry-content th,
.entry-content td {
  border: 1px solid #edd9c4;
  padding: 0.7rem 0.85rem;
  text-align: left;
}

.entry-content th {
  background: #fff7ef;
  color: var(--primary);
}

.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 1.75rem 0 1.25rem;
  font-size: 0.9rem;
}

.single-tags a {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #fff7ef;
  border: 1px solid #edd9c4;
  color: #5c4030;
  font-weight: 600;
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 0 0.25rem;
  border-top: 1px solid #f0e4d4;
}

.share-label {
  font-weight: 700;
  color: #333;
  margin-right: 0.25rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.share-whatsapp { background: #25d366; }
.share-facebook { background: #1877f2; }
.share-twitter { background: #111; }
.share-linkedin { background: #0a66c2; }

.post-nav-wrap {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.post-nav__item {
  background: #fff;
  border: 1px solid #f0e4d4;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  min-height: 96px;
}

.post-nav__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.post-nav__item a {
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.post-nav__item a:hover {
  text-decoration: underline;
}

.post-nav__next {
  text-align: left;
}

.related-posts .blog-grid {
  margin-top: 0.5rem;
}

.page-shell .adiyogi-breadcrumbs {
  justify-content: center;
}

.page-shell .adiyogi-breadcrumbs ol {
  justify-content: center;
}

@media (min-width: 720px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-nav {
    grid-template-columns: 1fr 1fr;
  }

  .post-nav__next {
    text-align: right;
  }

  .single-hero {
    min-height: 58vh;
  }
}

@media (min-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
