/* =========================================================
   Mana Vooru — Village Website
   ========================================================= */

:root{
  --green-primary:#2e8b3d;
  --green-dark:#1f6b2b;
  --green-darkest:#0d2b12;
  --green-footer:#0c2410;
  --orange:#f2a71b;
  --cream:#eef5ec;
  --text-dark:#1c2b1f;
  --text-muted:#5f6b62;
  --white:#ffffff;
  --radius-md:10px;
  --radius-lg:16px;
  --shadow-soft:0 10px 30px rgba(13,43,18,0.10);
  --shadow-card:0 4px 18px rgba(13,43,18,0.08);
  --section-space:44px;
  --section-space-sm:32px;
  --site-max:1400px;
  --site-gutter:28px;
}

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

html{scroll-behavior:smooth;}

.site-body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:#fff;
  color:var(--text-dark);
  -webkit-font-smoothing:antialiased;
}
.site-body .flex-1{flex:1 1 auto;}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  position:fixed;
  left:1rem;
  top:1rem;
  z-index:9999;
  width:auto;
  height:auto;
  padding:.65rem 1rem;
  background:#111;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
}

body{
  font-family:'Poppins',sans-serif;
  color:var(--text-dark);
  background:var(--white);
  line-height:1.6;
}

img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
.container{
  max-width:var(--site-max);
  margin:0 auto;
  padding:0 var(--site-gutter);
}

h1,h2,h3,h4{font-weight:700;}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 26px;
  border-radius:8px;
  font-weight:600;
  font-size:0.95rem;
  transition:all .25s ease;
  border:2px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background:var(--green-primary);
  color:#fff;
}
.btn-primary:hover{
  background:var(--green-dark);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(46,139,61,0.35);
}
.btn-outline-light{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,0.8);
}
.btn-outline-light:hover{
  background:rgba(255,255,255,0.15);
  transform:translateY(-2px);
}
.btn-outline-dark{
  background:transparent;
  color:var(--text-dark);
  border-color:#cfd8d0;
}
.btn-outline-dark:hover{
  background:#f7fbf7;
  transform:translateY(-2px);
}

/* ============ HEADER ============ */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.header-inner{
  max-width:var(--site-max);
  margin:0 auto;
  padding:12px var(--site-gutter);
  display:flex;
  align-items:center;
  gap:28px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-right:auto;
}
.logo-image{
  width:auto;
  height:52px;
  max-width:220px;
  object-fit:contain;
  display:block;
  border-radius:6px;
}
.logo--image{
  gap:0;
}
.logo-image--footer{
  height:56px;
  max-width:240px;
  margin-bottom:14px;
}
.logo-icon{
  width:40px;height:40px;
  background:var(--cream);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  color:var(--green-primary);
  font-size:1.2rem;
}
.logo-text{display:flex;flex-direction:column;line-height:1.15;}
.logo-title{font-weight:800;font-size:1.15rem;color:var(--green-primary);}
.logo-title.light{color:#eaf6ea;}
.logo-tagline{font-size:0.72rem;color:var(--text-muted);letter-spacing:.3px;}
.logo-tagline.light{color:#a9c4ac;}

.main-nav{
  display:flex;
  gap:26px;
  align-items:center;
}
.main-nav a{
  font-weight:500;
  font-size:0.95rem;
  color:#333;
  padding:6px 2px;
  position:relative;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0;bottom:-4px;
  width:0;height:2px;
  background:var(--green-primary);
  transition:width .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after{width:100%;}
.main-nav a.active{color:var(--green-primary);}

.header-cta{padding:11px 20px;font-size:0.9rem;white-space:nowrap;}

/* Second navbar — categories */
.category-nav{
  background:var(--category-nav-bg, var(--green-primary));
  border-top:1px solid rgba(0,0,0,0.06);
  position:relative;
  z-index:998;
}
.category-nav__scroll{
  max-width:var(--site-max);
  margin:0 auto;
  overflow-x:auto;
  overflow-y:visible;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.category-nav__scroll::-webkit-scrollbar{display:none;}
.category-nav__list{
  display:flex;
  align-items:stretch;
  flex-wrap:nowrap;
  list-style:none;
  margin:0;
  padding:0;
  min-width:max-content;
}
.category-nav__group{
  display:flex;
  align-items:stretch;
  flex-shrink:0;
  border-right:1px solid rgba(0,0,0,0.08);
  position:relative;
}
.category-nav__group:last-child{border-right:none;}
.category-nav__cat,
.category-nav__sub{
  display:flex;
  align-items:center;
  white-space:nowrap;
  transition:background .2s ease,color .2s ease;
}
.category-nav__cat{
  padding:12px 18px;
  font-weight:700;
  font-size:0.9rem;
  color:#1c2b1f;
  gap:7px;
}
.category-nav__caret{
  font-size:0.62rem;
  opacity:0.75;
  transition:transform .2s ease;
}
.category-nav__subs{
  display:none;
  list-style:none;
  margin:0;
  padding:0;
}
.category-nav__sub{
  padding:12px 14px;
  font-weight:500;
  font-size:0.82rem;
  color:#33403a;
  border-left:1px solid rgba(0,0,0,0.06);
}
.category-nav__cat:hover,
.category-nav__cat.is-active,
.category-nav__sub:hover,
.category-nav__sub.is-active{
  background:var(--category-nav-hover, var(--green-dark));
  color:#fff;
}

/* Dropdown subcategories on hover */
.category-nav__group.has-subs .category-nav__subs{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  flex-direction:column;
  align-items:stretch;
  background:#fff;
  border:1px solid #e3ece4;
  border-top:none;
  border-radius:0 0 10px 10px;
  box-shadow:0 14px 28px rgba(13,43,18,0.16);
  z-index:1100;
  padding:6px 0;
}
.category-nav__group.has-subs .category-nav__sub{
  border-left:none;
  border-bottom:1px solid #eef1ec;
  color:var(--text-dark);
  padding:11px 16px;
}
.category-nav__group.has-subs .category-nav__sub:last-child{
  border-bottom:none;
}
.category-nav__group.has-subs .category-nav__sub:hover,
.category-nav__group.has-subs .category-nav__sub.is-active{
  background:var(--cream);
  color:var(--green-primary);
}
.category-nav__group.has-subs:hover .category-nav__cat,
.category-nav__group.has-subs:focus-within .category-nav__cat,
.category-nav__group.has-subs.is-open .category-nav__cat{
  background:var(--category-nav-hover, var(--green-dark));
  color:#fff;
}
.category-nav__group.has-subs:hover .category-nav__caret,
.category-nav__group.has-subs:focus-within .category-nav__caret,
.category-nav__group.has-subs.is-open .category-nav__caret{
  transform:rotate(180deg);
}
.category-nav__group.has-subs:hover .category-nav__subs,
.category-nav__group.has-subs:focus-within .category-nav__subs,
.category-nav__group.has-subs.is-open .category-nav__subs{
  display:flex;
}

@media (min-width:769px){
  .category-nav__scroll{overflow:visible;}
}

.nav-toggle{
  display:none;
  background:none;border:none;
  font-size:1.4rem;
  color:var(--green-primary);
  cursor:pointer;
  position:relative;
  z-index:1003;
}

/* ============ HERO ============ */
.hero{
  position:relative;
  min-height:640px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
  color:#fff;
}
.hero-bg{
  position:absolute;inset:0;
  background-image:url('assets/images/hero.png');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.hero-mobile-title{display:none;}

.hero-content{
  position:relative;z-index:2;
  max-width:var(--site-max);
  width:100%;
  margin:0 auto;
  padding:0 var(--site-gutter);
}
.hero-eyebrow{font-size:1.3rem;font-weight:400;margin-bottom:4px;}
.hero-title{
  font-size:4.2rem;
  font-weight:800;
  line-height:1.05;
  margin-bottom:18px;
  text-shadow:0 2px 10px rgba(0,0,0,0.55), 0 0 24px rgba(0,0,0,0.35);
}
.hero-eyebrow,
.hero-desc{
  text-shadow:0 1px 8px rgba(0,0,0,0.55);
}
.hero-rule{
  width:70px;height:3px;
  background:#fff;
  opacity:0.85;
  margin-bottom:18px;
}
.hero-desc{
  font-size:1.15rem;
  font-weight:300;
  max-width:480px;
  margin-bottom:32px;
  color:#f1f1f1;
}
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap;}

/* Quick access strip */
.quick-access-section{
  position:relative;
  z-index:3;
  margin-top:-28px;
  padding-bottom:10px;
  background:transparent;
}
.quick-access{
  width:100%;
  max-width:none;
  margin:0 auto;
  background:#fff;
  border-radius:12px;
  box-shadow:0 14px 40px rgba(13,43,18,0.12);
  display:grid;
  grid-template-columns:repeat(6,1fr);
  overflow:hidden;
  border:1px solid #eef1ec;
}
.quick-item{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:32px 16px;
  color:var(--text-dark);
  text-align:center;
  transition:background .25s ease, transform .25s ease;
}
.quick-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:22%;
  height:56%;
  width:1px;
  background:#ebebeb;
}
.quick-item:hover{
  background:#f7fbf7;
}
.q-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  margin-bottom:6px;
}
.q-icon i{
  font-size:1.55rem;
  color:var(--green-primary);
  transition:transform .25s ease, color .25s ease;
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  font-style:normal;
  line-height:1;
  display:inline-block;
  -webkit-font-smoothing:antialiased;
}
.q-icon-muted i{color:#2a3a2e;}
.quick-item:hover .q-icon i{transform:scale(1.08);}
.q-title{
  font-weight:600;
  font-size:0.95rem;
  line-height:1.3;
  color:var(--text-dark);
}
.q-sub{
  font-size:0.78rem;
  color:var(--text-muted);
  line-height:1.4;
}

/* ============ ABOUT ============ */
.about-section{
  background:var(--cream);
  padding:var(--section-space) 0;
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:36px;
  align-items:center;
}
.eyebrow{
  color:var(--green-primary);
  font-weight:600;
  margin-bottom:10px;
  letter-spacing:.3px;
}
.about-text h2{
  font-size:2.3rem;
  margin-bottom:18px;
  color:var(--text-dark);
  line-height:1.2;
}
.about-desc{
  color:var(--text-muted);
  margin-bottom:18px;
  max-width:520px;
  line-height:1.75;
}
.about-desc--lead{
  color:var(--text-dark);
  font-size:1.02rem;
}
.about-highlights{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 18px;
  margin:8px 0 20px;
  max-width:520px;
}
.about-highlights li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:0.92rem;
  color:var(--text-dark);
  line-height:1.45;
}
.about-highlights li i{
  color:var(--green-primary);
  margin-top:3px;
  flex-shrink:0;
}

.about-image{
  width:100%;
  min-height:380px;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  background:
    url('assets/images/about.png') center center / cover no-repeat;
}

/* ============ NEWS + SIDEBAR ============ */
.news-section{
  padding:var(--section-space) 0;
}
.section-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:22px;
  flex-wrap:wrap;
  gap:12px;
}
.section-heading h2{font-size:2rem;}
.view-all{
  color:var(--green-primary);
  font-weight:600;
  font-size:0.95rem;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.view-all i{font-size:0.8rem;transition:transform .2s ease;}
.view-all:hover i{transform:translateX(4px);}

.news-grid{
  display:grid;
  grid-template-columns:2.1fr 1fr;
  gap:36px;
  align-items:start;
}

@media (min-width:1025px){
  .news-grid{
    grid-template-columns:2.85fr 0.75fr;
    gap:48px;
  }
  .news-cards{
    gap:28px;
  }
  .news-body{
    padding:22px 22px 26px;
  }
  .about-desc{
    max-width:620px;
  }
  .about-highlights{
    max-width:620px;
  }
}

.news-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.news-card{
  background:#fff;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease, box-shadow .25s ease;
}
.news-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 34px rgba(13,43,18,0.14);
}
.news-thumb{height:150px;background-size:cover;background-position:center;}
.meeting-thumb{background:linear-gradient(160deg,#cbb489 0%, #a1815a 45%, #5b432c 100%);}
.plant-thumb{background:linear-gradient(160deg,#7a5636 0%, #5a3d22 40%, #3d6b2a 75%, #2c4c1e 100%);}
.water-thumb{background:linear-gradient(180deg,#a9d3ec 0%, #7bb6de 40%, #dededa 65%, #b7b7ac 100%);}

.news-body{padding:18px 18px 22px;}
.news-date{
  font-size:0.78rem;
  color:var(--text-muted);
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-bottom:8px;
}
.news-body h3{font-size:1.08rem;margin-bottom:8px;}
.news-body h3 a{color:var(--text-dark);transition:color .2s ease;}
.news-body h3 a:hover{color:var(--green-primary);}
.news-body p{
  font-size:0.88rem;
  color:var(--text-muted);
  margin-bottom:12px;
}
.read-more{
  color:var(--green-primary);
  font-weight:600;
  font-size:0.85rem;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.read-more i{font-size:0.72rem;transition:transform .2s ease;}
.read-more:hover i{transform:translateX(4px);}

/* Inner pages */
.page-banner{
  background:var(--cream);
  padding:36px 0 42px;
}
.page-banner--compact{padding:56px 0;}
.page-banner--article{
  background:#fff;
  border-bottom:1px solid #e3ece4;
}
.page-banner--article.page-banner--compact{padding:34px 0 30px;}
.page-banner--article .article-page-title{
  font-size:1.75rem;
  line-height:1.35;
  margin-bottom:0;
  max-width:920px;
  padding-left:16px;
  border-left:4px solid var(--green-primary);
}
.article-page-title__main{
  display:block;
  font-weight:700;
  color:var(--text-dark);
  text-wrap:pretty;
}
.article-page-title__sub{
  display:block;
  margin-top:10px;
  font-size:1rem;
  font-weight:500;
  color:var(--text-muted);
  line-height:1.6;
  text-wrap:pretty;
}
.page-banner--category{
  padding:24px 0 28px;
  border-bottom:1px solid #e3ece4;
}
.page-banner--category h1{
  font-size:1.85rem;
  margin-bottom:0;
}
.page-banner__desc--compact{
  margin-top:10px;
  font-size:0.94rem;
  max-width:560px;
}
.page-banner h1{
  font-size:2.4rem;
  color:var(--text-dark);
  margin-bottom:12px;
}
.page-banner__desc{
  max-width:640px;
  color:var(--text-muted);
  line-height:1.7;
}
.page-breadcrumb{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  font-size:0.86rem;
  color:var(--text-muted);
}
.page-breadcrumb a{color:var(--green-primary);font-weight:600;}
.inner-page-section{padding-top:var(--section-space);}
.inner-page-section--tight{padding-top:var(--section-space-sm);}
.empty-state{
  text-align:center;
  padding:3rem 1rem;
  background:#fff;
  border:1px dashed #cfe3d1;
  border-radius:var(--radius-md);
}
.empty-state p{margin-bottom:1rem;color:var(--text-muted);}
.news-cards--listing{grid-template-columns:repeat(3,1fr);}
.news-thumb-link{display:block;}
.news-thumb-link--placeholder .news-thumb{height:190px;}
.news-thumb-img{
  display:block;
  width:100%;
  height:190px;
  object-fit:cover;
}
.news-body h3 a{color:var(--text-dark);transition:color .2s ease;}
.news-body h3 a:hover{color:var(--green-primary);}
.article-meta{
  color:var(--text-muted);
  font-size:0.95rem;
}
.article-section{padding-bottom:var(--section-space);}
.article-layout{
  display:grid;
  grid-template-columns:2.1fr 1fr;
  gap:50px;
  align-items:start;
}
.article-main{min-width:0;}
.article-feature{
  margin-bottom:24px;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.article-feature__img{
  display:block;
  width:100%;
  height:auto;
}
.article-content{
  color:var(--text-dark);
  line-height:1.8;
}
.article-content p{margin-bottom:1rem;}
.article-content img{max-width:100%;height:auto;border-radius:var(--radius-md);}
.article-share{
  margin-top:1.75rem;
  padding-top:1.25rem;
  border-top:1px solid var(--border-light,#e5e7eb);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.75rem 1rem;
}
.article-share__label{
  font-size:.9rem;
  font-weight:600;
  color:var(--text-dark,#111);
}
.article-share__icons{display:flex;flex-wrap:wrap;gap:.5rem;}
.theme-village .article-share__btn{
  width:38px;
  height:38px;
  border-radius:999px;
  background:#f3f4f6;
  color:#111;
}
.theme-village .article-share__btn:hover{background:var(--primary,#2e8b3d);color:#fff;}
.article-back{margin-top:2rem;}
.pagination-bar{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1rem;
  margin-top:2rem;
  flex-wrap:wrap;
}

/* Services pages */
.services-section{padding-bottom:var(--section-space);}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border-radius:var(--radius-lg);
  padding:24px 22px;
  box-shadow:var(--shadow-card);
  border:1px solid #e8efe9;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 34px rgba(13,43,18,0.14);
  border-color:#cfe3d1;
}
.service-card__icon{
  width:52px;height:52px;
  border-radius:14px;
  background:var(--cream);
  color:var(--green-primary);
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;
  margin-bottom:16px;
}
.service-card h2{
  font-size:1.15rem;
  margin-bottom:10px;
  color:var(--text-dark);
}
.service-card p{
  color:var(--text-muted);
  line-height:1.65;
  margin-bottom:16px;
  flex:1;
}

/* Service detail page */
.page-banner--service{
  padding:32px 0 0;
  background:linear-gradient(180deg, #f4faf2 0%, var(--cream) 100%);
  border-bottom:1px solid #dce8dc;
}
.service-hero{
  display:flex;
  align-items:flex-start;
  gap:24px;
  margin-bottom:28px;
}
.service-hero__badge{
  flex:0 0 88px;
  width:88px;
  height:88px;
  border-radius:22px;
  background:linear-gradient(145deg, var(--green-primary), var(--green-dark));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  box-shadow:0 12px 28px rgba(46,139,61,0.28);
}
.service-hero__content{min-width:0;flex:1;}
.service-hero__content h1{
  font-size:2.2rem;
  line-height:1.15;
  margin-bottom:12px;
}
.service-hero__content .page-banner__desc{
  max-width:720px;
  font-size:1.02rem;
  margin-bottom:22px;
}
.service-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.service-quick-info{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:8px;
  padding-bottom:28px;
}
.service-quick-info__item{
  background:#fff;
  border:1px solid #e3ece4;
  border-radius:var(--radius-md);
  padding:16px 18px;
  box-shadow:var(--shadow-card);
}
.service-quick-info__label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--text-muted);
  margin-bottom:6px;
  font-weight:600;
}
.service-quick-info__label i{color:var(--green-primary);}
.service-quick-info__item strong{
  display:block;
  font-size:0.95rem;
  color:var(--text-dark);
  line-height:1.35;
}

.service-detail-section{
  padding-top:var(--section-space-sm);
  padding-bottom:var(--section-space);
  background:#fff;
}
.service-detail-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:36px;
  align-items:start;
}
.service-detail-main{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.service-detail-sidebar{
  position:sticky;
  top:92px;
}

.service-panel{
  background:#fff;
  border:1px solid #e6eee7;
  border-radius:var(--radius-lg);
  padding:24px;
  box-shadow:var(--shadow-card);
}
.service-panel--about{
  background:linear-gradient(180deg, #fff 0%, #f9fcf8 100%);
}
.service-panel__head{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:18px;
}
.service-panel__icon{
  flex:0 0 44px;
  width:44px;
  height:44px;
  border-radius:12px;
  background:var(--cream);
  color:var(--green-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.05rem;
}
.service-panel__head h2{
  font-size:1.2rem;
  color:var(--text-dark);
  margin-bottom:4px;
}
.service-panel__sub{
  font-size:0.86rem;
  color:var(--text-muted);
  line-height:1.45;
}
.service-panel__text{
  color:var(--text-muted);
  line-height:1.8;
  font-size:0.98rem;
}

.service-panel-duo{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.service-checklist{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.service-checklist li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  background:#f8fbf8;
  border:1px solid #e8f0e9;
  border-radius:10px;
  color:var(--text-dark);
  font-size:0.92rem;
  line-height:1.55;
}
.service-checklist__mark{
  flex:0 0 22px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--green-primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.62rem;
  margin-top:2px;
}

.service-timeline{
  display:flex;
  flex-direction:column;
  gap:0;
  counter-reset:service-step;
}
.service-timeline li{
  display:flex;
  gap:14px;
  position:relative;
  padding:0 0 18px 0;
}
.service-timeline li:last-child{padding-bottom:0;}
.service-timeline li:not(:last-child)::after{
  content:'';
  position:absolute;
  left:15px;
  top:34px;
  bottom:0;
  width:2px;
  background:#dce8dc;
}
.service-timeline__num{
  flex:0 0 32px;
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--green-primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.82rem;
  font-weight:700;
  position:relative;
  z-index:1;
}
.service-timeline__text{
  flex:1;
  padding-top:4px;
  color:var(--text-muted);
  font-size:0.93rem;
  line-height:1.65;
}

.service-cta-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  padding:28px 30px;
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color:#fff;
  box-shadow:0 14px 32px rgba(31,107,43,0.28);
}
.service-cta-panel h2{
  font-size:1.25rem;
  margin-bottom:8px;
  color:#fff;
}
.service-cta-panel p{
  color:rgba(255,255,255,0.9);
  line-height:1.65;
  max-width:520px;
  font-size:0.94rem;
}
.service-cta-panel__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.service-cta-panel .btn-primary{
  background:#fff;
  color:var(--green-dark);
}
.service-cta-panel .btn-primary:hover{
  background:#f4faf2;
  color:var(--green-darkest);
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.service-help-box h3{
  background:var(--green-primary);
  color:#fff;
}
.service-help-list{background:#fff;}
.service-help-list li{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:14px 18px;
  border-bottom:1px solid #eef1ec;
}
.service-help-list li:last-child{border-bottom:none;}
.service-help-list__label{
  font-size:0.82rem;
  color:var(--text-muted);
}
.service-help-list li strong,
.service-help-list li a{
  font-size:0.95rem;
  color:var(--text-dark);
  font-weight:700;
}
.service-help-list li a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--green-primary);
}
.service-help-list li a i{font-size:0.75rem;}

/* Sidebar */
.sidebar{display:flex;flex-direction:column;gap:24px;}
.article-sidebar{position:sticky;top:90px;}
.sidebar-posts-box h3{background:var(--green-primary);color:#fff;}
.sidebar-posts{background:#fff;}
.sidebar-post{
  display:flex;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid #eef1ec;
  transition:background .2s ease;
}
.sidebar-post:last-child{border-bottom:none;}
.sidebar-post:hover{background:var(--cream);}
.sidebar-post__thumb{
  flex:0 0 72px;
  width:72px;
  height:56px;
  border-radius:8px;
  overflow:hidden;
  background:linear-gradient(160deg,#cbb489 0%, #a1815a 45%, #5b432c 100%);
}
.sidebar-post__thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.sidebar-post__body{min-width:0;flex:1;}
.sidebar-post__date{
  display:block;
  font-size:0.76rem;
  color:var(--text-muted);
  margin-bottom:4px;
}
.sidebar-post__title{
  display:block;
  font-size:0.88rem;
  font-weight:600;
  line-height:1.35;
  color:var(--text-dark);
}
.sidebar-post:hover .sidebar-post__title{color:var(--green-primary);}
.side-box{
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.side-box h3{
  padding:16px 20px;
  font-size:1.05rem;
  display:flex;
  align-items:center;
  gap:10px;
}
.links-box h3{background:var(--green-primary);color:#fff;}
.links-box ul{background:#fff;}
.links-box li a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:13px 20px;
  border-bottom:1px solid #eef1ec;
  font-size:0.92rem;
  color:var(--text-dark);
  transition:background .2s ease, padding-left .2s ease;
}
.links-box li:last-child a{border-bottom:none;}
.links-box li a:hover{background:var(--cream);padding-left:26px;color:var(--green-primary);}
.links-box li a i{font-size:0.78rem;color:var(--green-primary);}

.emergency-box h3{background:var(--orange);color:#fff;}
.emergency-box ul{background:#fff9ec;}
.emergency-box li{
  display:flex;
  justify-content:space-between;
  padding:13px 20px;
  border-bottom:1px solid #f2e6c8;
  font-size:0.92rem;
}
.emergency-box li:last-child{border-bottom:none;}
.emergency-box li strong{color:var(--text-dark);}

/* ============ GALLERY ============ */
.gallery-section{
  padding:var(--section-space) 0;
}
.about-section--page{
  padding:var(--section-space) 0;
}
.gallery-section--page{
  padding-bottom:var(--section-space);
}
.gallery-strip--page{
  grid-template-columns:repeat(4,1fr);
}
.gallery-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.gallery-item{
  margin:0;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  background:#f7fbf7;
  border:1px solid #e3efe4;
}
.gallery-item img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  transition:transform .3s ease;
}
.gallery-item:hover img{transform:scale(1.02);}
.gallery-empty{
  grid-column:1 / -1;
  margin:0;
  padding:2rem 1rem;
  text-align:center;
  color:var(--text-muted);
  background:#f7fbf7;
  border:1px dashed #cfe3d1;
  border-radius:var(--radius-md);
}

/* ============ VIDEOS ============ */
.videos-section{
  padding:var(--section-space) 0;
  background:#fff;
}
.videos-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.video-card{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.video-card__trigger{
  position:relative;
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:none;
  border-radius:var(--radius-md);
  overflow:hidden;
  cursor:pointer;
  box-shadow:var(--shadow-card);
}
.video-card__thumb{
  display:block;
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
  transition:transform .3s ease;
}
.video-card__play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(13,43,18,0.28);
  color:#fff;
  font-size:3rem;
  transition:background .25s ease;
}
.video-card__trigger:hover .video-card__thumb{transform:scale(1.03);}
.video-card__trigger:hover .video-card__play{background:rgba(13,43,18,0.42);}
.video-card__title{
  font-size:1.12rem;
  font-weight:600;
  line-height:1.45;
  color:#111;
}
.video-modal{
  position:fixed;
  inset:0;
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.video-modal[hidden]{display:none;}
.video-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.72);
}
.video-modal__dialog{
  position:relative;
  width:min(960px,100%);
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}
.video-modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid #e8efe9;
}
.video-modal__title{
  margin:0;
  font-size:1rem;
  line-height:1.4;
  color:var(--text-dark);
}
.video-modal__close{
  border:0;
  background:none;
  font-size:1.8rem;
  line-height:1;
  color:#64748b;
  cursor:pointer;
}
.video-modal__frame-wrap{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  background:#000;
}
.video-modal__frame{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* CMS pages */
.cms-page-section{padding-bottom:var(--section-space);}
.cms-page-stack{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:34px;
  max-width:820px;
  margin:0 auto;
}
.cms-page-content{
  width:100%;
  color:var(--text-dark);
  line-height:1.8;
  font-size:0.98rem;
}
.cms-page-lead{
  font-size:1.05rem;
  color:var(--text-dark);
  line-height:1.75;
  margin-bottom:1.25rem;
  font-weight:500;
}
.cms-page-content p{margin-bottom:1rem;}
.cms-page-content h2,
.cms-page-content h3{
  color:var(--text-dark);
  margin:1.5rem 0 0.75rem;
}
.cms-page-content ul,
.cms-page-content ol{
  margin:0 0 1rem 1.2rem;
}
.cms-page-content li{margin-bottom:0.45rem;}
.cms-page-content img{
  max-width:100%;
  height:auto;
  border-radius:var(--radius-md);
  margin:1rem auto;
  display:block;
}
.cms-page-content a{color:var(--green-primary);font-weight:600;}
.cms-page-feature{
  width:100%;
  max-width:720px;
  margin:0 auto;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  background:#f7fbf7;
  border:1px solid #e3efe4;
}
.cms-page-feature__img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  margin:0 auto;
}

/* ============ FOOTER ============ */
.site-footer{
  background:var(--green-footer);
  color:#c9dccb;
  padding-top:70px;
  position:relative;
}
.site-footer::before{
  content:"";
  display:block;
  height:14px;
  background-image:radial-gradient(circle at 10px 0, transparent 10px, var(--green-footer) 11px);
  background-size:20px 20px;
  position:absolute;
  top:0;left:0;right:0;
  transform:translateY(-100%);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 0.8fr 0.9fr 1fr 1.1fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-logo{margin-bottom:16px;}
.footer-about p{font-size:0.9rem;margin-bottom:20px;color:#a9c4ac;}
.social-icons{display:flex;gap:12px;}
.social-icons a{
  width:36px;height:36px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;
  transition:all .2s ease;
}
.social-icons a:hover{background:var(--green-primary);color:#fff;}

.footer-col h4{color:#fff;margin-bottom:20px;font-size:1.02rem;}
.footer-col ul li{margin-bottom:12px;}
.footer-col ul li a{
  font-size:0.9rem;
  color:#a9c4ac;
  transition:color .2s ease, padding-left .2s ease;
}
.footer-col ul li a:hover{color:#fff;padding-left:4px;}
.contact-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:0.88rem;
  color:#a9c4ac;
  margin-bottom:16px;
}
.contact-list li i{color:var(--green-primary);margin-top:3px;flex-shrink:0;}
.contact-list li a{
  color:#a9c4ac;
  transition:color .2s ease;
  line-height:1.55;
}
.contact-list li a:hover{color:#fff;}
.footer-logo-link{display:inline-block;margin-bottom:14px;}
.footer-bottom-links{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}
.footer-bottom-links a{
  color:#a9c4ac;
  transition:color .2s ease;
}
.footer-bottom-links a:hover{color:#fff;}
.footer-bottom-links span{opacity:0.45;}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Contact page */
.contact-section{padding-bottom:var(--section-space);}
.contact-layout{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:34px;
  align-items:start;
}
.contact-info{
  display:grid;
  gap:16px;
}
.contact-card{
  background:#fff;
  border:1px solid #e6eee7;
  border-radius:var(--radius-md);
  padding:20px;
  box-shadow:var(--shadow-card);
}
.contact-card__icon{
  width:42px;height:42px;
  border-radius:12px;
  background:var(--cream);
  color:var(--green-primary);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:12px;
}
.contact-card h2{
  font-size:1.02rem;
  margin-bottom:8px;
  color:var(--text-dark);
}
.contact-card p,
.contact-card a{
  color:var(--text-muted);
  line-height:1.65;
  font-size:0.92rem;
}
.contact-card a{color:var(--green-primary);font-weight:600;}
.contact-hours li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:0.88rem;
  color:var(--text-muted);
  padding:4px 0;
}
.contact-side{display:flex;flex-direction:column;gap:20px;}
.contact-form,
.contact-map{
  background:#fff;
  border:1px solid #e6eee7;
  border-radius:var(--radius-md);
  padding:24px;
  box-shadow:var(--shadow-card);
}
.contact-form h2,
.contact-map h2{
  font-size:1.15rem;
  margin-bottom:8px;
  color:var(--text-dark);
}
.contact-form__lead{
  color:var(--text-muted);
  font-size:0.92rem;
  margin-bottom:18px;
  line-height:1.6;
}
.contact-form label{
  display:block;
  font-size:0.84rem;
  font-weight:600;
  color:var(--text-dark);
  margin:0 0 6px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #dbe6dc;
  border-radius:8px;
  padding:11px 12px;
  font-family:inherit;
  font-size:0.92rem;
  margin-bottom:14px;
}
.contact-form textarea{min-height:120px;resize:vertical;}
.contact-form button{width:100%;justify-content:center;}
.contact-map iframe{
  width:100%;
  height:260px;
  border:0;
  border-radius:8px;
  margin-top:12px;
}


.newsletter-form{display:flex;flex-direction:column;gap:10px;margin-top:14px;}
.newsletter-form input{
  padding:11px 14px;
  border-radius:6px;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.06);
  color:#fff;
  font-family:inherit;
  font-size:0.88rem;
}
.newsletter-form input::placeholder{color:#8ea791;}
.newsletter-form button{justify-content:center;font-size:0.88rem;padding:11px;}
.newsletter-form__hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.form-msg{font-size:0.82rem;color:#8fd39a;margin-top:8px;min-height:18px;}
.form-msg--success{color:#8fd39a;}
.form-msg--error{color:#fca5a5;}
.contact-form__hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.contact-alert{
  padding:12px 14px;
  border-radius:10px;
  font-size:0.9rem;
  line-height:1.5;
  margin-bottom:16px;
}
.contact-alert--success{
  background:#ecfdf3;
  border:1px solid #b7ebc6;
  color:#166534;
}
.contact-alert--error{
  background:#fef2f2;
  border:1px solid #fecaca;
  color:#991b1b;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  padding:22px var(--site-gutter);
  max-width:var(--site-max);
  margin:0 auto;
  font-size:0.82rem;
  color:#8ea791;
  flex-wrap:wrap;
  gap:8px;
}
.footer-bottom i{color:#e2632a;}

/* ============ BACK TO TOP ============ */
.back-to-top{
  position:fixed;
  bottom:26px;
  right:26px;
  width:46px;height:46px;
  border-radius:50%;
  background:var(--green-primary);
  color:#fff;
  border:none;
  font-size:1.05rem;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(13,43,18,0.3);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .3s ease;
  z-index:999;
}
.back-to-top.show{opacity:1;visibility:visible;transform:translateY(0);}
.back-to-top:hover{background:var(--green-dark);}

/* ============ RESPONSIVE ============ */
@media (max-width:1024px){
  .quick-access-section{
    margin-top:-18px;
    padding-bottom:8px;
  }
  .quick-access{
    width:100%;
    grid-template-columns:repeat(3,1fr);
  }
  .quick-item::after{display:none;}
  .quick-item:not(:nth-child(3n))::after{display:block;}
  .quick-item:nth-child(-n+3){
    border-bottom:1px solid #ebebeb;
  }
  .about-grid{grid-template-columns:1fr;gap:24px;}
  .about-image{order:-1;}
  .about-desc{max-width:100%;}
  .about-highlights{grid-template-columns:1fr;}
  .cms-page-stack{max-width:100%;}
  .cms-page-feature{max-width:100%;}
  .contact-layout{grid-template-columns:1fr;}
  .news-grid{grid-template-columns:1fr;}
  .article-layout{grid-template-columns:1fr;gap:36px;}
  .article-sidebar{position:static;}
  .service-detail-layout{grid-template-columns:1fr;gap:32px;}
  .service-detail-sidebar{position:static;}
  .service-panel-duo{grid-template-columns:1fr;}
  .service-quick-info{grid-template-columns:repeat(2,1fr);}
  .services-grid{grid-template-columns:1fr 1fr;}
  .news-cards{grid-template-columns:1fr 1fr;}
  .news-cards--listing{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .gallery-strip--page{grid-template-columns:repeat(2,1fr);}
  .gallery-strip{grid-template-columns:repeat(2,1fr);gap:18px;}
  .videos-grid{grid-template-columns:repeat(2,1fr);gap:18px;}
}

@media (max-width:768px){
  .main-nav{
    position:fixed;
    top:var(--mobile-menu-top, 76px);
    left:0;right:0;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:20px 24px;
    gap:16px;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
    transform:translateY(-150%);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:transform .3s ease, opacity .3s ease, visibility .3s ease;
    z-index:1002;
    max-height:calc(100dvh - var(--mobile-menu-top, 76px));
    overflow-y:auto;
  }
  .main-nav.open{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
  .site-header.is-menu-open .category-nav{
    position:relative;
    z-index:1001;
  }
  .header-cta{display:none;}
  .nav-toggle{display:block;}
  .category-nav__cat{padding:11px 16px;font-size:0.85rem;}
  .category-nav__sub{padding:11px 14px;font-size:0.82rem;}
  .category-nav__group.has-subs .category-nav__subs{
    left:0;
    right:auto;
    min-width:200px;
  }

  .hero-title{font-size:2.6rem;}
  .hero{
    min-height:0;
    padding:0;
    display:block;
  }
  .hero-content{display:none;}
  .hero-bg{
    position:relative;
    inset:auto;
    width:100%;
    aspect-ratio:16 / 10;
    min-height:220px;
    background-image:url('assets/images/hero.png');
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center center;
  }
  .hero-mobile-title{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:2px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:2;
    width:min(92vw, 360px);
    padding:0 12px;
    color:#fff;
    background:transparent;
    pointer-events:none;
  }
  .hero-mobile-title__eyebrow{
    font-family:'Anek Telugu', 'Noto Sans Telugu', sans-serif;
    font-size:clamp(1rem, 4.8vw, 1.2rem);
    font-weight:300;
    line-height:1.2;
    letter-spacing:0.28em;
    text-indent:0.28em;
    opacity:0.96;
    text-shadow:0 1px 10px rgba(0,0,0,0.45);
  }
  .hero-mobile-title__name{
    font-family:'Anek Telugu', 'Noto Sans Telugu', sans-serif;
    font-size:clamp(3rem, 13.5vw, 3.85rem);
    font-weight:400;
    line-height:1.08;
    letter-spacing:0.03em;
    min-height:1.12em;
    text-shadow:
      0 2px 18px rgba(0,0,0,0.62),
      0 0 28px rgba(0,0,0,0.28),
      0 0 1px rgba(255,255,255,0.35);
  }
  .hero-mobile-title__rule{
    display:block;
    width:64px;
    height:2px;
    margin-top:10px;
    border-radius:999px;
    background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.95) 50%, rgba(255,255,255,0));
    box-shadow:0 0 12px rgba(255,255,255,0.35);
    opacity:0;
    transform:scaleX(0.35);
    transition:opacity 0.55s ease, transform 0.7s ease;
  }
  .hero-mobile-title.is-complete .hero-mobile-title__rule,
  .hero-mobile-title__rule.is-visible{
    opacity:1;
    transform:scaleX(1);
  }
  .hero-type-cursor{
    display:inline-block;
    width:2px;
    height:0.82em;
    margin-left:3px;
    vertical-align:-0.08em;
    background:rgba(255,255,255,0.95);
    box-shadow:0 0 8px rgba(255,255,255,0.45);
    animation:heroTypeCursor 1s step-end infinite;
  }
  @keyframes heroTypeCursor{
    50%{opacity:0;}
  }
  .quick-access-section{
    margin-top:-10px;
    background:transparent;
  }
  .quick-access{
    width:100%;
    margin:0 auto;
    grid-template-columns:repeat(2,1fr);
    border-radius:10px;
  }
  .quick-item{
    padding:24px 12px;
  }
  .quick-item::after{display:none;}
  .quick-item:nth-child(odd)::after{display:block;}
  .quick-item:nth-child(-n+4){
    border-bottom:1px solid #ebebeb;
  }
  .about-section{padding:var(--section-space-sm) 0;}
  .news-section{padding:var(--section-space-sm) 0;}
  .gallery-section{padding:var(--section-space-sm) 0;}
  .videos-section{padding:var(--section-space-sm) 0;}
  .videos-grid{grid-template-columns:1fr;gap:16px;}
  .about-text h2{font-size:1.9rem;}
  .about-image{min-height:260px;}
  .news-cards{grid-template-columns:1fr;}
  .news-cards--listing{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:1fr;}
  .service-hero{
    flex-direction:column;
    align-items:flex-start;
  }
  .service-hero__badge{
    width:72px;
    height:72px;
    font-size:1.6rem;
  }
  .service-hero__content h1{font-size:1.75rem;}
  .service-hero__actions,
  .service-cta-panel__actions{
    width:100%;
  }
  .service-hero__actions .btn,
  .service-cta-panel__actions .btn{
    width:100%;
    justify-content:center;
  }
  .service-quick-info{grid-template-columns:1fr;}
  .service-cta-panel{
    flex-direction:column;
    align-items:flex-start;
    padding:22px 20px;
  }
  .page-banner h1{font-size:1.9rem;}
  .page-banner--article.page-banner--compact{padding:18px 0 16px;}
  .page-banner--article .article-page-title{
    font-size:1.15rem;
    line-height:1.4;
    padding-left:12px;
    border-left-width:3px;
  }
  .article-page-title__main{
    font-size:1.18rem;
    line-height:1.38;
    letter-spacing:-0.01em;
  }
  .article-page-title__sub{
    margin-top:7px;
    font-size:0.84rem;
    line-height:1.52;
    font-weight:400;
  }
  .gallery-strip--page{grid-template-columns:1fr;}
  .gallery-strip{grid-template-columns:1fr;gap:16px;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .footer-bottom-links{justify-content:center;}
}
