/*
 * Inner-page styles (blog, archives, search, single, page, 404, comments).
 * Loads on everything except the front page.
 */

/* Page hero */
.page-hero{
  background:
    radial-gradient(circle at 82% 16%,rgba(243,156,18,.16),transparent 27%),
    radial-gradient(circle at 8% 72%,rgba(46,134,193,.13),transparent 30%),
    linear-gradient(180deg,#f2f8fd 0%,#fff 100%);
  padding:88px 0 72px;
}
.page-hero h1{
  font-size:clamp(34px,4.5vw,56px);
  color:var(--blue-dark);
  max-width:820px;
}
.page-hero h1 span{color:var(--orange)}
.page-hero-lead{
  color:var(--muted);
  font-size:17px;
  max-width:640px;
  margin:18px 0 0;
}
.page-hero-search{margin-top:26px;max-width:520px}
.category-count{
  display:inline-block;
  margin:20px 0 0;
  background:var(--orange-soft);
  color:var(--orange-dark);
  border-radius:99px;
  padding:7px 16px;
  font-size:13px;font-weight:800;
}

/* Search form */
.search-form{display:flex;gap:10px;flex-wrap:wrap}
.search-form .search-field{
  flex:1 1 220px;
  padding:13px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font:inherit;
  font-size:15px;
  color:var(--ink);
}
.search-form .search-field:focus{
  outline:2px solid var(--blue);
  outline-offset:1px;
  border-color:var(--blue);
}

/* Post grid */
.posts-section{padding:64px 0 100px}
.post-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.post-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease,box-shadow .25s ease;
}
.post-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.post-card-media{
  display:block;
  aspect-ratio:8/5;
  overflow:hidden;
  background:var(--soft);
}
.post-card-media img{
  width:100%;height:100%;
  object-fit:cover;
}
.post-card-body{
  padding:22px 22px 24px;
  display:flex;flex-direction:column;gap:9px;
  flex:1;
}
.post-card-meta{
  display:flex;align-items:center;gap:8px;
  font-size:12.5px;color:var(--muted);font-weight:700;
}
.article-cat{color:var(--orange-dark);text-transform:uppercase;font-size:11px;letter-spacing:.08em;font-weight:800}
.article-dot{color:var(--line)}
.post-card-title{font-size:21px;line-height:1.25}
.post-card-title a{color:var(--blue-dark);transition:color .2s ease}
.post-card-title a:hover{color:var(--orange-dark)}
.post-card-excerpt{
  margin:0;
  color:var(--muted);
  font-size:14px;
  flex:1;
}
.post-card-more{
  font-weight:800;font-size:13.5px;color:var(--blue-mid);
}
.post-card-more:hover{color:var(--orange-dark)}

/* Pagination */
.pagination{margin-top:46px;justify-content:center}
.pagination .nav-links{
  display:flex;flex-wrap:wrap;gap:8px;justify-content:center;
}
.pagination .page-numbers{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:42px;height:42px;padding:0 14px;
  border-radius:11px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  font-weight:700;font-size:14px;
  transition:background .2s ease,color .2s ease;
}
.pagination .page-numbers:hover{background:var(--soft);color:var(--orange-dark)}
.pagination .page-numbers.current{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
}

/* Single article */
.article-hero{padding:74px 0 50px}
.article-meta-top{
  display:flex;align-items:center;gap:10px;
  color:var(--muted);font-size:13px;font-weight:700;
  margin-bottom:14px;
}
.article-hero h1{
  font-size:clamp(30px,4vw,48px);
  color:var(--blue-dark);
  max-width:860px;
}
.article-featured{
  margin-top:8px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.article-featured img{width:100%}

.article-body{padding:56px 0 90px}
.container-read{width:min(760px,calc(100% - 40px));margin-inline:auto}
.article-content{
  font-size:16.5px;
  line-height:1.75;
  color:#2b4257;
}
.article-content > * + *{margin-top:1.1em}
.article-content h2{
  font-size:28px;color:var(--blue-dark);
  margin-top:1.8em;
}
.article-content h3{
  font-size:22px;color:var(--blue-dark);
  margin-top:1.6em;
}
.article-content a{color:var(--blue-mid);text-decoration:underline;text-underline-offset:3px}
.article-content a:hover{color:var(--orange-dark)}
.article-content blockquote{
  margin:1.6em 0;
  padding:18px 24px;
  border-left:4px solid var(--orange);
  background:var(--orange-soft);
  border-radius:0 14px 14px 0;
  font-style:italic;
}
.article-content img{border-radius:16px}
.article-content code{
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:6px;
  padding:2px 7px;
  font-size:.9em;
}
.article-content pre{
  background:var(--blue-deep);
  color:#e4eff7;
  padding:20px 22px;
  border-radius:14px;
  overflow:auto;
  line-height:1.6;
}
.article-content pre code{background:transparent;border:0;padding:0;color:inherit}
.article-content table{
  width:100%;
  border-collapse:collapse;
  font-size:15px;
}
.article-content th,
.article-content td{
  border:1px solid var(--line);
  padding:10px 14px;
  text-align:left;
}
.article-content th{background:var(--soft);color:var(--blue-dark)}
.article-content .wp-caption-text,
.article-content figcaption{
  margin-top:8px;
  font-size:13px;
  color:var(--muted);
  text-align:center;
}

/* Page links */
.page-links{margin-top:1.4em}
.page-links .page-link{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:36px;height:36px;margin-right:6px;
  border:1px solid var(--line);border-radius:9px;
  font-size:14px;font-weight:700;
}

/* Tags */
.tags-row{display:flex;flex-wrap:wrap;gap:9px;margin-top:1.8em}
.tag{
  background:var(--soft);
  border:1px solid var(--line);
  color:var(--blue-mid);
  border-radius:99px;
  padding:6px 13px;
  font-size:12.5px;font-weight:800;
}
.tag:hover{background:var(--blue);border-color:var(--blue);color:#fff}

/* Post navigation */
.post-navigation{
  margin-top:46px;
  padding-top:26px;
  border-top:1px solid var(--line);
}
.post-navigation .nav-links{
  display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;
}
.post-navigation .nav-previous,
.post-navigation .nav-next{max-width:48%}
.post-navigation .nav-next{margin-left:auto;text-align:right}
.nav-subtitle{
  display:block;
  font-size:12px;font-weight:800;
  color:var(--orange-dark);
  text-transform:uppercase;letter-spacing:.08em;
  margin-bottom:4px;
}
.nav-title{font-weight:700;color:var(--blue-dark);font-size:15px;line-height:1.4}
.post-navigation a:hover .nav-title{color:var(--orange-dark)}

/* Comments */
.comments-section{padding:0 0 100px}
.comments-title{
  font-size:26px;color:var(--blue-dark);
  margin-bottom:26px;
}
.comment-list{
  list-style:none;
  margin:0 0 40px;padding:0;
}
.comment-list .comment{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:18px 20px;
  margin-bottom:16px;
}
.comment-list .children{
  list-style:none;
  margin:16px 0 0;padding-left:22px;
}
.comment-meta{
  display:flex;align-items:center;gap:12px;
  font-size:13px;color:var(--muted);
  margin-bottom:10px;
}
.comment-meta .avatar{border-radius:50%}
.comment-author{font-weight:800;color:var(--blue-dark)}
.comment-author a{color:var(--blue-dark)}
.comment-content{font-size:15px;color:#2b4257}
.comment-content p{margin:0 0 .7em}
.reply a{
  font-size:12.5px;font-weight:800;color:var(--blue-mid);
}
.reply a:hover{color:var(--orange-dark)}
.no-comments{color:var(--muted)}

.comment-reply-title,
.comment-respond .comment-reply-title{
  font-size:22px;color:var(--blue-dark);
  margin-bottom:16px;
}
.comment-form p{margin:0 0 14px}
.comment-form label{
  display:block;
  font-size:13px;font-weight:700;color:#2b4257;
  margin-bottom:6px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea{
  width:100%;
  padding:12px 15px;
  border:1px solid var(--line);
  border-radius:11px;
  background:#fff;
  font:inherit;
  font-size:15px;
  color:var(--ink);
}
.comment-form input:focus,
.comment-form textarea:focus{
  outline:2px solid var(--blue);
  outline-offset:1px;
  border-color:var(--blue);
}
.comment-form .submit{
  display:inline-flex;align-items:center;gap:9px;
  padding:13px 21px;
  border-radius:12px;
  border:1px solid transparent;
  background:var(--blue);
  color:#fff;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(46,134,193,.24);
  transition:background .2s ease;
}
.comment-form .submit:hover{background:var(--blue-mid)}
.comment-form .logged-in-as,
.comment-form .comment-notes{font-size:13px;color:var(--muted)}
.comment-navigation{
  margin-bottom:20px;
  font-size:13.5px;font-weight:700;
}

/* 404 */
.error-hero{padding:110px 0 120px}
.error-content{max-width:640px}
.error-code{
  font:800 130px "Manrope",sans-serif;
  letter-spacing:-.04em;
  line-height:1;
  color:transparent;
  -webkit-text-stroke:2px var(--blue-dark);
  margin-bottom:10px;
}
.error-actions{margin:26px 0 4px;display:flex;gap:12px;flex-wrap:wrap}
.error-links{
  display:flex;flex-wrap:wrap;gap:10px;
  margin-top:26px;
}
.error-links a{
  background:var(--soft);
  border:1px solid var(--line);
  color:var(--blue-mid);
  border-radius:99px;
  padding:9px 18px;
  font-size:13.5px;font-weight:800;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.error-links a:hover{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
}

/* No results */
.no-results{padding:40px 0 90px}
.no-results h2{color:var(--blue-dark);font-size:28px;margin-bottom:12px}
.no-results p{color:var(--muted);margin:0 0 20px}

/* About page */
.about-story{padding:72px 0 96px}
.about-story-grid{
  display:grid;grid-template-columns:.92fr 1.08fr;gap:65px;align-items:center;
}
.about-story .about-image{
  position:relative;min-height:500px;
  border-radius:26px;overflow:hidden;
  background-size:cover;background-position:center;
  box-shadow:var(--shadow);
}
.about-story .about-image::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(160deg,rgba(46,134,193,.04),rgba(243,156,18,.22));
}
.about-story .about-note{
  position:absolute;z-index:2;
  left:22px;bottom:22px;
  background:#fff;color:var(--ink);
  padding:18px;border-radius:16px;
  max-width:260px;
  box-shadow:0 14px 30px rgba(20,64,95,.18);
}
.about-story .about-note strong{font:800 18px "Manrope",sans-serif;color:var(--blue-mid)}
.about-story .about-note small{display:block;color:var(--muted);margin-top:4px}
.about-story-content h2{font-size:clamp(34px,4.3vw,52px);color:var(--blue-dark)}
.about-story-content > p{color:var(--muted);font-size:16px}

.about-values{background:var(--soft);padding:96px 0}
.about-value-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.about-value{
  padding:24px;border:1px solid var(--line);border-radius:18px;
  background:#fff;
}
.about-value strong{
  display:block;
  font:800 18px "Manrope",sans-serif;
  color:var(--blue-mid);
  margin-bottom:7px;
}
.about-value p{color:var(--muted);font-size:14px;margin:0}

.about-business{padding:96px 0}
.about-business-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
}
.about-business-card{
  padding:30px;border:1px solid var(--line);border-radius:22px;
  background:#fff;
  transition:transform .25s ease,box-shadow .25s ease;
}
.about-business-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.about-business-card h3{font-size:22px;color:var(--blue-dark);margin-bottom:9px}
.about-business-card p{color:var(--muted);font-size:14.5px;margin:0}

/* Herbal page */
.herbal-products{padding:76px 0 96px}
.herbal-list{display:grid;gap:56px}
.herbal-product{
  display:grid;grid-template-columns:.95fr 1.05fr;gap:48px;align-items:center;
}
.herbal-product-media{
  border-radius:24px;overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--soft);
}
.herbal-product-media img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3}
.herbal-product-content h2{font-size:clamp(28px,3.4vw,40px);color:var(--blue-dark);margin-bottom:12px}
.herbal-product-tag{
  display:inline-block;
  background:var(--orange-soft);
  color:var(--orange-dark);
  font-size:11.5px;font-weight:800;
  letter-spacing:.08em;text-transform:uppercase;
  padding:7px 12px;border-radius:99px;
  margin-bottom:14px;
}
.herbal-product-summary{
  font-size:17px;font-weight:600;color:var(--ink);
}
.herbal-product-content > p{color:var(--muted);font-size:15.5px}
.herbal-benefits{
  list-style:none;margin:0 0 24px;padding:0;
  display:flex;flex-wrap:wrap;gap:9px;
}
.herbal-benefits li{
  background:var(--soft);
  border:1px solid var(--line);
  color:var(--blue-mid);
  border-radius:99px;
  padding:6px 14px;
  font-size:13px;font-weight:800;
}
.herbal-product:nth-child(even) .herbal-product-media{order:2}

/* Ayurvedic page */
.ayurvedic-areas{padding:76px 0 96px}
.ayurvedic-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.ayurvedic-card{
  padding:30px;border:1px solid var(--line);border-radius:22px;
  background:#fff;
  transition:transform .25s ease,box-shadow .25s ease;
}
.ayurvedic-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.ayurvedic-icon{
  width:62px;height:62px;border-radius:17px;
  display:grid;place-items:center;
  background:var(--orange-soft);
  font-size:26px;
  margin-bottom:18px;
}
.ayurvedic-card h3{font-size:22px;color:var(--blue-dark);margin-bottom:9px}
.ayurvedic-summary{font-weight:600;color:var(--ink)}
.ayurvedic-card p{color:var(--muted);font-size:14.5px;margin:0 0 10px}
.ayurvedic-card p.ayurvedic-summary{margin-bottom:10px}
.ayurvedic-cta{padding:0 0 76px;background:transparent}

/* Nutrition page */
.nutrition-areas{padding:76px 0 96px}
.nutrition-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.nutrition-card{
  padding:30px;border:1px solid var(--line);border-radius:22px;
  background:#fff;
  transition:transform .25s ease,box-shadow .25s ease;
}
.nutrition-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.nutrition-icon{
  width:62px;height:62px;border-radius:17px;
  display:grid;place-items:center;
  background:var(--orange-soft);
  font-size:26px;
  margin-bottom:18px;
}
.nutrition-card h3{font-size:22px;color:var(--blue-dark);margin-bottom:9px}
.nutrition-summary{font-weight:600;color:var(--ink)}
.nutrition-card p{color:var(--muted);font-size:14.5px;margin:0 0 10px}
.nutrition-card p.nutrition-summary{margin-bottom:10px}
.nutrition-cta{padding:0 0 76px;background:transparent}

/* Solar products page */
.solar-products{padding:76px 0 96px}
.solar-list{display:grid;gap:56px}
.solar-product{
  display:grid;grid-template-columns:.95fr 1.05fr;gap:48px;align-items:center;
}
.solar-product-media{
  border-radius:24px;overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--soft);
}
.solar-product-media img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3}
.solar-product-content h2{font-size:clamp(28px,3.4vw,40px);color:var(--blue-dark);margin-bottom:12px}
.solar-product-tag{
  display:inline-block;
  background:var(--orange-soft);
  color:var(--orange-dark);
  font-size:11.5px;font-weight:800;
  letter-spacing:.08em;text-transform:uppercase;
  padding:7px 12px;border-radius:99px;
  margin-bottom:14px;
}
.solar-product-summary{
  font-size:17px;font-weight:600;color:var(--ink);
}
.solar-product-content > p{color:var(--muted);font-size:15.5px}
.solar-benefits{
  list-style:none;margin:0 0 24px;padding:0;
  display:flex;flex-wrap:wrap;gap:9px;
}
.solar-benefits li{
  background:var(--soft);
  border:1px solid var(--line);
  color:var(--blue-mid);
  border-radius:99px;
  padding:6px 14px;
  font-size:13px;font-weight:800;
}
.solar-product:nth-child(even) .solar-product-media{order:2}

/* Gallery page */
.gallery-section{padding:76px 0 96px}
.gallery-filters{
  display:flex;flex-wrap:wrap;gap:10px;
  margin-bottom:32px;
}
.gallery-filter{
  display:inline-flex;align-items:center;
  padding:9px 18px;
  border:1px solid var(--line);
  border-radius:99px;
  background:#fff;
  color:var(--ink);
  font:inherit;
  font-size:14px;font-weight:800;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.gallery-filter:hover{background:var(--soft);color:var(--orange-dark)}
.gallery-filter.is-active{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
}
.gallery-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
}
.gallery-item{
  margin:0;border-radius:20px;overflow:hidden;
  background:var(--soft);
  border:1px solid var(--line);
  transition:transform .25s ease,box-shadow .25s ease;
}
.gallery-item:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.gallery-item a{display:block}
.gallery-item img{
  width:100%;height:100%;object-fit:cover;
  aspect-ratio:4/3;display:block;
  transition:transform .4s ease;
}
.gallery-item:hover img{transform:scale(1.04)}
.gallery-empty{
  color:var(--muted);
  text-align:center;
  padding:40px 0;
  border:1px dashed var(--line);
  border-radius:20px;
}

/* Gallery lightbox */
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(9,25,40,.92);
  padding:30px;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease,visibility .25s;
}
.gallery-lightbox.is-open{
  opacity:1;
  visibility:visible;
}
.gallery-lightbox-figure{
  margin:0;
  max-width:min(1080px,92vw);
  max-height:88vh;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.gallery-lightbox-img{
  display:block;
  max-width:100%;
  max-height:78vh;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:12px;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
}
.gallery-lightbox-caption{
  color:#d9e9f6;
  font-size:14px;
  text-align:center;
}
.gallery-lightbox-close{
  position:absolute;
  top:22px;
  right:26px;
  width:46px;
  height:46px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:background .2s ease;
}
.gallery-lightbox-close:hover{background:rgba(255,255,255,.24)}

/* Clients page */
.clients-sectors{padding:76px 0 96px}
.clients-sector-list{
  display:flex;flex-wrap:wrap;gap:12px;
}
.clients-sector-chip{
  background:var(--soft);
  border:1px solid var(--line);
  color:var(--blue-mid);
  border-radius:99px;
  padding:10px 20px;
  font-size:14px;font-weight:800;
}
.clients-testimonials{background:var(--soft);padding:96px 0}
.clients-testimonial-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
}
.clients-testimonial{
  margin:0;
  padding:28px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  display:flex;flex-direction:column;gap:18px;
}
.clients-testimonial p{
  margin:0;
  color:var(--ink);
  font-size:15.5px;
  line-height:1.7;
  flex:1;
}
.clients-testimonial footer{
  border-top:1px solid var(--line);
  padding-top:14px;
}
.clients-testimonial footer strong{
  display:block;
  font:800 15px "Manrope",sans-serif;
  color:var(--blue-dark);
}
.clients-testimonial footer span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:3px;
}

/* Responsive */
@media (max-width:980px){
  .post-grid{grid-template-columns:1fr 1fr}
  .about-story-grid{grid-template-columns:1fr}
  .about-value-grid,.about-business-grid{grid-template-columns:1fr 1fr}
  .about-story .about-image{min-height:420px;max-width:100%}
  .herbal-product{grid-template-columns:1fr;gap:30px}
  .herbal-product:nth-child(even) .herbal-product-media{order:0}
  .herbal-product-media img{aspect-ratio:16/10}
  .ayurvedic-grid{grid-template-columns:1fr 1fr}
  .nutrition-grid{grid-template-columns:1fr 1fr}
  .solar-product{grid-template-columns:1fr;gap:30px}
  .solar-product:nth-child(even) .solar-product-media{order:0}
  .solar-product-media img{aspect-ratio:16/10}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .clients-testimonial-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:680px){
  .post-grid{grid-template-columns:1fr}
  .posts-section{padding:40px 0 76px}
  .page-hero{padding:64px 0 52px}
  .article-body{padding:44px 0 76px}
  .post-navigation .nav-previous,
  .post-navigation .nav-next{max-width:100%}
  .error-code{font-size:96px}
  .about-story{padding:56px 0 76px}
  .about-story .about-image{min-height:380px}
  .about-values{padding:76px 0}
  .about-business{padding:76px 0}
  .about-value-grid,.about-business-grid{grid-template-columns:1fr}
  .herbal-products{padding:56px 0 76px}
  .herbal-list{gap:44px}
  .herbal-product-media img{aspect-ratio:4/3}
  .ayurvedic-grid{grid-template-columns:1fr}
  .ayurvedic-areas{padding:56px 0 76px}
  .ayurvedic-cta{padding:0 0 76px}
  .nutrition-grid{grid-template-columns:1fr}
  .nutrition-areas{padding:56px 0 76px}
  .nutrition-cta{padding:0 0 76px}
  .solar-products{padding:56px 0 76px}
  .solar-list{gap:44px}
  .solar-product-media img{aspect-ratio:4/3}
  .gallery-section{padding:56px 0 76px}
  .gallery-grid{grid-template-columns:1fr}
  .clients-sectors{padding:56px 0 76px}
  .clients-testimonials{padding:76px 0}
  .clients-testimonial-grid{grid-template-columns:1fr}
}
