@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:wght@400;500;600;700;800;900&display=swap&subset=latin-ext");

/* =========================================================
   01. GLOBAL
   ========================================================= */
:root{
  --ag-green:#67c96f;
  --ag-green-dark:#2f7548;
  --ag-dark:#2f5a43;
  --ag-text:#355b49;
  --ag-muted:#6f8378;
  --ag-cream:#fffdf6;
  --ag-soft:#f4fbf5;
  --ag-blue:#e8f7ff;
  --ag-yellow:#fff3b8;
  --ag-pink:#ffe8ef;
  --ag-shadow:0 22px 55px rgba(47,90,67,.11);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0}
body{font-family:"Nunito",sans-serif;color:var(--ag-text);background:#fff;overflow-x:hidden}
a{color:inherit}
img{max-width:100%;height:auto}
.ag-container{width:min(1180px,92%);margin:0 auto}
.ag-home{overflow:hidden}
.ag-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:50px;padding:13px 22px;border-radius:16px;
  font-weight:900;text-decoration:none;transition:.2s ease;border:0;
}
.ag-btn:hover{transform:translateY(-2px)}
.ag-btn-primary{background:var(--ag-green);color:#fff;box-shadow:0 13px 28px rgba(74,171,90,.22)}
.ag-btn-white{background:#fff;color:var(--ag-green-dark);box-shadow:0 13px 28px rgba(47,90,67,.10)}

/* =========================================================
   02. HEADER
   ========================================================= */
.ag-header{position:relative;z-index:1000;width:100%;background:rgba(255,255,255,.97);border-bottom:1px solid rgba(47,90,67,.06);box-shadow:0 8px 35px rgba(45,83,63,.055)}
.ag-header-container{width:min(1180px,92%);min-height:88px;margin:auto;display:flex;align-items:center;justify-content:space-between;gap:28px}
.ag-brand{display:flex;align-items:center;gap:12px;flex-shrink:0;text-decoration:none}
.ag-brand-bubble{position:relative;width:52px;height:52px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(135deg,#7bdc80,#55bb68);box-shadow:0 10px 22px rgba(71,166,86,.20)}
.ag-mini-chick{position:relative;width:32px;height:32px;display:block;border-radius:50%;background:#ffd75d}
.ag-mini-eye{position:absolute;top:11px;width:4px;height:5px;border-radius:50%;background:#2f533f}
.ag-mini-eye.left{left:8px}.ag-mini-eye.right{right:8px}
.ag-mini-beak{position:absolute;left:50%;top:17px;width:0;height:0;transform:translateX(-50%);border-left:4px solid transparent;border-right:4px solid transparent;border-top:6px solid #f39b35}
.ag-brand-text{display:flex;flex-direction:column;line-height:1.05}
.ag-brand-text strong{font-family:"Baloo 2",sans-serif;font-size:20px;color:#315743}
.ag-brand-text small{margin-top:5px;font-size:11px;font-weight:800;color:#77a183;letter-spacing:.035em}
.ag-nav{margin-left:auto}
.ag-nav-list{list-style:none;margin:0;padding:0;display:flex;align-items:center;gap:5px}
.ag-nav-list>li{position:relative}
.ag-nav-list>li>a{position:relative;display:flex;align-items:center;padding:11px 13px;border-radius:13px;font-size:14px;font-weight:800;color:#496358;text-decoration:none;transition:.2s}
.ag-nav-list>li>a:hover,.ag-nav-list>.current-menu-item>a,.ag-nav-list>.current_page_item>a,.ag-nav-list>.current-menu-ancestor>a{color:#31834c;background:#edf9ef}
.ag-nav-list>li>a:after{content:"";position:absolute;left:50%;bottom:3px;width:4px;height:4px;border-radius:50%;background:#67c96f;opacity:0;transform:translateX(-50%) scale(0);transition:.2s}
.ag-nav-list>li>a:hover:after,.ag-nav-list>.current-menu-item>a:after,.ag-nav-list>.current_page_item>a:after{opacity:1;transform:translateX(-50%) scale(1)}
.ag-header-actions{display:flex;align-items:center;gap:10px;flex-shrink:0}
.ag-header-cta{display:inline-flex;align-items:center;gap:7px;padding:12px 17px;border-radius:15px;background:linear-gradient(135deg,#70d276,#55b968);color:#fff;font-size:14px;font-weight:900;text-decoration:none;box-shadow:0 11px 24px rgba(64,157,80,.20)}
.ag-nav-list .sub-menu{position:absolute;top:calc(100% + 12px);left:0;min-width:220px;margin:0;padding:9px;list-style:none;border-radius:18px;background:#fff;box-shadow:0 18px 50px rgba(45,83,63,.14);opacity:0;visibility:hidden;transform:translateY(7px);transition:.2s}
.ag-nav-list li:hover>.sub-menu{opacity:1;visibility:visible;transform:none}
.ag-nav-list .sub-menu a{display:block;padding:10px 12px;border-radius:11px;color:#496358;font-size:13px;font-weight:800;text-decoration:none}
.ag-nav-list .sub-menu a:hover{background:#edf9ef;color:#31834c}
.ag-menu-toggle{display:none;width:46px;height:46px;padding:0;border:0;border-radius:14px;background:#edf9ef;cursor:pointer;align-items:center;justify-content:center;flex-direction:column;gap:5px}
.ag-menu-toggle span{width:20px;height:2px;border-radius:99px;background:#39764d;transition:.25s}
.ag-menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.ag-menu-toggle.is-open span:nth-child(2){opacity:0}
.ag-menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.ag-mobile-menu{display:none;overflow:hidden;max-height:0;background:#fff;border-top:1px solid #edf4ef;transition:max-height .35s}
.ag-mobile-menu.is-open{max-height:700px}
.ag-mobile-menu-inner{width:min(1180px,92%);margin:auto;padding:14px 0 25px}
.ag-mobile-nav-list{list-style:none;padding:0;margin:0}
.ag-mobile-nav-list a{display:block;padding:13px 12px;border-radius:13px;color:#456054;font-weight:800;text-decoration:none}
.ag-mobile-nav-list a:hover,.ag-mobile-nav-list .current-menu-item>a{color:#31834c;background:#edf9ef}
.ag-mobile-nav-list .sub-menu{list-style:none;margin:0 0 5px 13px;padding:0 0 0 12px;border-left:2px solid #dff2e3}
.ag-mobile-cta{display:flex;justify-content:center;margin-top:14px;padding:14px 20px;border-radius:16px;background:#67c96f;color:#fff;font-weight:900;text-decoration:none}

/* =========================================================
   03. HOME - HERO
   ========================================================= */
.ag-home-hero{
  position:relative;min-height:650px;padding:78px 0 105px;overflow:hidden;
  background:linear-gradient(180deg,#dff6ff 0%,#eaf9ef 68%,#f8fff8 100%);
}
.ag-home-hero-grid{position:relative;z-index:4;display:grid;grid-template-columns:1.02fr .98fr;gap:55px;align-items:center}
.ag-home-hero-content{padding:20px 0}
.ag-next-event{
  display:inline-flex;align-items:center;flex-wrap:wrap;gap:6px;
  margin-bottom:24px;padding:9px 14px;border-radius:999px;background:#fff;
  color:#39764d;text-decoration:none;font-size:12px;font-weight:900;
  text-transform:uppercase;letter-spacing:.045em;box-shadow:0 9px 24px rgba(47,90,67,.08)
}
.ag-next-event-icon{font-size:16px}.ag-next-event-title{text-transform:none;letter-spacing:0}
.ag-home-hero-title{max-width:650px;margin:0;font-family:"Baloo 2",sans-serif;font-size:clamp(54px,5.4vw,78px);font-weight:700;line-height:.98;letter-spacing:-.035em;color:#315743}
.ag-home-hero-title span{display:block;color:#58bd68}
.ag-home-hero-description{max-width:610px;margin:25px 0 28px;font-size:18px;line-height:1.72;color:#587166}
.ag-home-hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.ag-hero-sun{position:absolute;z-index:1;width:94px;height:94px;right:7%;top:58px;border-radius:50%;background:#ffd963;box-shadow:0 0 0 16px rgba(255,217,99,.12)}
.ag-hero-cloud{position:absolute;z-index:1;width:125px;height:38px;border-radius:999px;background:rgba(255,255,255,.82)}
.ag-hero-cloud:before,.ag-hero-cloud:after{content:"";position:absolute;background:inherit;border-radius:50%}
.ag-hero-cloud:before{width:55px;height:55px;left:18px;bottom:8px}.ag-hero-cloud:after{width:70px;height:70px;right:14px;bottom:5px}
.ag-hero-cloud-1{left:4%;top:75px;transform:scale(.75)}
.ag-hero-cloud-2{right:31%;top:52px;transform:scale(.55)}
.ag-hero-cloud-3{right:2%;top:220px;transform:scale(.48)}
.ag-home-playground{position:relative;min-height:460px}
.ag-playground-message{position:absolute;z-index:8;right:25px;top:10px;padding:12px 17px;background:#fff;border-radius:20px 20px 20px 5px;font-family:"Baloo 2";font-weight:600;color:#4d775d;box-shadow:0 13px 28px rgba(47,90,67,.11)}
.ag-playground-hill{position:absolute;left:-25px;right:-50px;bottom:0;height:175px;border-radius:50% 50% 0 0/70% 70% 0 0;background:#86d875}
.ag-school{position:absolute;z-index:5;width:285px;height:210px;left:50%;bottom:78px;transform:translateX(-50%);border-radius:18px 18px 10px 10px;background:#fff3c2;border:7px solid #fff;box-shadow:0 18px 35px rgba(47,90,67,.12)}
.ag-school-roof{position:absolute;left:-25px;right:-25px;top:-62px;height:75px;background:#ef7f75;clip-path:polygon(50% 0,100% 100%,0 100%);border-radius:12px}
.ag-school-sign{position:absolute;top:18px;left:50%;transform:translateX(-50%);white-space:nowrap;padding:7px 11px;border-radius:9px;background:#67c96f;color:#fff;font-size:10px;font-weight:900;letter-spacing:.03em}
.ag-school-window{position:absolute;top:75px;width:55px;height:55px;border-radius:12px;background:#aee3f6;border:7px solid #fff}
.ag-school-window:after{content:"";position:absolute;left:50%;top:0;bottom:0;width:4px;background:#fff;transform:translateX(-50%)}
.ag-school-window-left{left:35px}.ag-school-window-right{right:35px}
.ag-school-door{position:absolute;left:50%;bottom:0;transform:translateX(-50%);width:58px;height:68px;border-radius:14px 14px 0 0;background:#73b97b;border:7px solid #fff;border-bottom:0}
.ag-tree{position:absolute;z-index:4;bottom:72px;width:105px;height:190px}
.ag-tree-left{left:-2px}.ag-tree-right{right:-4px;transform:scale(.9)}
.ag-tree-trunk{position:absolute;bottom:0;left:50%;width:24px;height:85px;transform:translateX(-50%);border-radius:12px;background:#a96e45}
.ag-tree-crown{position:absolute;top:0;left:50%;width:105px;height:115px;transform:translateX(-50%);border-radius:52% 48% 48% 52%;background:#59bd6a;box-shadow:-27px 23px 0 -9px #72cd74,27px 26px 0 -10px #72cd74}
.ag-chick{position:absolute;z-index:7;width:78px;height:78px;border-radius:50%;background:#ffd75d;border:5px solid #fff;box-shadow:0 12px 24px rgba(47,90,67,.12)}
.ag-chick-one{left:62px;bottom:37px}.ag-chick-two{right:68px;bottom:32px;transform:scale(.88)}
.ag-chick-eye{position:absolute;top:26px;width:6px;height:7px;border-radius:50%;background:#3d5548}
.ag-chick-eye.left{left:21px}.ag-chick-eye.right{right:21px}
.ag-chick-beak{position:absolute;left:50%;top:40px;transform:translateX(-50%);width:0;height:0;border-left:7px solid transparent;border-right:7px solid transparent;border-top:10px solid #f29a38}
.ag-flower{position:absolute;z-index:7;font-size:25px}.ag-flower-1{left:12px;bottom:15px}.ag-flower-2{left:165px;bottom:10px}.ag-flower-3{right:155px;bottom:13px}.ag-flower-4{right:7px;bottom:18px}
.ag-home-hero-wave{position:absolute;z-index:3;left:-2%;right:-2%;bottom:-45px;height:95px;background:#fff;border-radius:50% 50% 0 0/55% 55% 0 0}

/* =========================================================
   04. HOME - COMMON / ABOUT
   ========================================================= */
.ag-home-section{padding:92px 0}
.ag-section-heading{max-width:760px;margin:0 auto 48px;text-align:center}
.ag-section-kicker{display:inline-block;margin-bottom:12px;color:#4d9560;font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.ag-section-heading h2{margin:0;font-family:"Baloo 2";font-size:clamp(38px,4vw,53px);line-height:1.05;letter-spacing:-.02em;color:#315743}
.ag-section-heading h2 span{color:#62bd6b}
.ag-section-heading p{max-width:650px;margin:16px auto 0;font-size:17px;line-height:1.7;color:#708278}
.ag-story-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.ag-story-card{position:relative;min-height:255px;padding:32px;border-radius:30px;box-shadow:var(--ag-shadow);overflow:hidden}
.ag-story-card:after{content:"";position:absolute;width:120px;height:120px;right:-35px;bottom:-45px;border-radius:50%;background:rgba(255,255,255,.45)}
.ag-story-card-green{background:#e8f7e8}.ag-story-card-blue{background:#e8f6ff}.ag-story-card-pink{background:#ffeaf1}
.ag-story-icon{width:58px;height:58px;display:grid;place-items:center;margin-bottom:18px;border-radius:19px;background:#fff;font-size:28px;box-shadow:0 9px 20px rgba(47,90,67,.07)}
.ag-story-card h3{margin:0 0 9px;font-family:"Baloo 2";font-size:28px;color:#315743}
.ag-story-card p{margin:0;font-size:15px;line-height:1.7;color:#62776c}

/* =========================================================
   05. HOME - GROUPS
   ========================================================= */
.ag-home-groups{background:#fffdf7}
.ag-groups-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.ag-group-card{padding:31px 30px 34px;text-align:center;background:#fff;border-radius:32px;box-shadow:var(--ag-shadow)}
.ag-nest{position:relative;height:130px;margin-bottom:8px}
.ag-nest-chick{position:absolute;z-index:2;left:50%;top:2px;transform:translateX(-50%);font-size:76px;line-height:1}
.ag-nest-base{position:absolute;left:50%;bottom:10px;width:135px;height:42px;transform:translateX(-50%);border-radius:50%;background:#c88f59;box-shadow:inset 0 -8px 0 rgba(112,69,35,.10)}
.ag-nest-base:before,.ag-nest-base:after{content:"";position:absolute;left:8px;right:8px;height:5px;border-radius:99px;background:#a66f42;transform:rotate(8deg)}
.ag-nest-base:before{top:10px}.ag-nest-base:after{top:23px;transform:rotate(-7deg)}
.ag-group-card h3{margin:4px 0 4px;font-family:"Baloo 2";font-size:28px;color:#315743}
.ag-group-age{display:inline-block;margin-bottom:12px;padding:5px 11px;border-radius:999px;background:#edf9ef;color:#4b9560;font-size:12px;font-weight:900}
.ag-group-card p{margin:0;color:#6c7e74;line-height:1.65}

/* =========================================================
   06. HOME - DAY
   ========================================================= */
.ag-home-day{background:#f1fbf4}
.ag-day-timeline{position:relative;max-width:900px;margin:0 auto}
.ag-day-timeline:before{content:"";position:absolute;left:39px;top:25px;bottom:25px;width:4px;border-radius:99px;background:linear-gradient(#8dd78f,#b6e7bd)}
.ag-day-item{position:relative;display:grid;grid-template-columns:80px 1fr;gap:22px;align-items:center;margin-bottom:16px;padding:18px 24px 18px 0}
.ag-day-icon{position:relative;z-index:2;width:80px;height:80px;display:grid;place-items:center;border-radius:25px;background:#fff;font-size:34px;box-shadow:0 12px 26px rgba(47,90,67,.10)}
.ag-day-content{padding:20px 25px;background:#fff;border-radius:24px;box-shadow:0 12px 28px rgba(47,90,67,.065)}
.ag-day-time{font-size:12px;font-weight:900;color:#4c9a60;letter-spacing:.06em}
.ag-day-content h3{margin:3px 0 5px;font-family:"Baloo 2";font-size:24px;color:#315743}
.ag-day-content p{margin:0;color:#6c7e74;line-height:1.55}

/* =========================================================
   07. HOME - ACTIVITIES
   ========================================================= */
.ag-activities-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.ag-activity-item{min-height:145px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:9px;border-radius:25px;background:#fff;box-shadow:0 15px 35px rgba(47,90,67,.08);transition:.2s}
.ag-activity-item:nth-child(4n+1){background:#edf9ef}.ag-activity-item:nth-child(4n+2){background:#edf7ff}.ag-activity-item:nth-child(4n+3){background:#fff8d8}.ag-activity-item:nth-child(4n){background:#ffedf3}
.ag-activity-item:hover{transform:translateY(-4px)}
.ag-activity-item span{font-size:39px}.ag-activity-item strong{font-family:"Baloo 2";font-size:20px;color:#355b49}

/* =========================================================
   08. HOME - VOICES
   ========================================================= */
.ag-home-voices{background:#fff9e9}
.ag-voices-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.ag-voice-card{position:relative;padding:31px 28px 28px;border-radius:30px;background:#fff;box-shadow:var(--ag-shadow)}
.ag-voice-card:after{content:"";position:absolute;left:34px;bottom:-16px;border-width:17px 17px 0 0;border-style:solid;border-color:#fff transparent transparent transparent}
.ag-voice-avatar{width:60px;height:60px;display:grid;place-items:center;margin-bottom:16px;border-radius:50%;background:#fff4b9;font-size:34px}
.ag-voice-card p{margin:0 0 14px;font-family:"Baloo 2";font-size:21px;line-height:1.48;color:#466b58}
.ag-voice-name{display:block;color:#78a087;font-size:13px;font-weight:800;font-style:italic;letter-spacing:.01em}

/* =========================================================
   09. HOME - CTA
   ========================================================= */
.ag-home-cta{padding:90px 0 105px;background:#fff}
.ag-home-cta-box{position:relative;overflow:hidden;display:grid;grid-template-columns:1fr 260px;align-items:center;min-height:340px;padding:52px 65px;border-radius:38px;background:linear-gradient(135deg,#5fc86c,#80d784);box-shadow:0 25px 60px rgba(65,157,80,.20)}
.ag-home-cta-box:before,.ag-home-cta-box:after{content:"";position:absolute;border:2px solid rgba(255,255,255,.15);border-radius:50%}
.ag-home-cta-box:before{width:260px;height:260px;right:-70px;top:-110px}.ag-home-cta-box:after{width:180px;height:180px;left:-80px;bottom:-90px}
.ag-home-cta-content{position:relative;z-index:2;max-width:700px;color:#fff}
.ag-home-cta-content .ag-section-kicker{color:#eaffeb}
.ag-home-cta-content h2{margin:0 0 15px;font-family:"Baloo 2";font-size:clamp(38px,4vw,53px);line-height:1.05;color:#fff}
.ag-home-cta-content p{max-width:650px;margin:0 0 25px;font-size:17px;line-height:1.7;color:rgba(255,255,255,.91)}
.ag-home-cta-chick{position:relative;z-index:2;text-align:center;font-size:145px;filter:drop-shadow(0 14px 15px rgba(42,107,53,.12))}

/* =========================================================
   10. INNER PAGES
   ========================================================= */
.ag-page-hero{position:relative;overflow:hidden;padding:92px 0 82px;background:linear-gradient(135deg,#dcf5df,#e6f8ef 55%,#dff3ff)}
.ag-page-hero:before,.ag-page-hero:after{content:"";position:absolute;border-radius:50%;background:#fff;opacity:.6}
.ag-page-hero:before{width:230px;height:75px;left:7%;top:28px}.ag-page-hero:after{width:300px;height:95px;right:6%;bottom:-35px}
.ag-breadcrumb{font-weight:900;color:#4c9560;font-size:13px;text-transform:uppercase;letter-spacing:.08em}
.ag-page-hero h1{font-family:"Baloo 2";font-size:clamp(46px,6vw,72px);line-height:1;margin:12px 0;color:var(--ag-dark);max-width:850px}
.ag-page-hero p{font-size:18px;color:#587066;max-width:700px}
.ag-page-layout{padding:78px 0 100px}
.ag-page-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);gap:60px;align-items:start}
.ag-page-content{font-size:18px;line-height:1.8}.ag-page-content>*:first-child{margin-top:0}
.ag-page-content h2{font-family:"Baloo 2";font-size:38px;line-height:1.1;color:var(--ag-dark);margin:45px 0 15px}
.ag-page-content h3{font-family:"Baloo 2";font-size:27px;color:var(--ag-dark)}
.ag-page-content img{border-radius:24px}
.ag-gallery{position:sticky;top:30px}.ag-gallery-title{font-family:"Baloo 2";font-size:25px;margin:0 0 18px}
.ag-gallery-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}.ag-gallery-grid a:first-child{grid-column:1/-1}
.ag-gallery-grid img{display:block;width:100%;aspect-ratio:1;object-fit:cover;border-radius:22px}.ag-gallery-grid a:first-child img{aspect-ratio:16/10}
.ag-empty-gallery{background:var(--ag-soft);border-radius:28px;padding:28px;color:#547061}
.ag-empty-gallery strong{display:block;font-family:"Baloo 2";font-size:22px;margin-bottom:8px}

/* =========================================================
   11. ACTIVITIES + EVENTS ARCHIVES
   ========================================================= */
.ag-activities-head{padding:82px 0 45px;text-align:center}
.ag-activities-head h1{font-family:"Baloo 2";font-size:clamp(44px,6vw,68px);margin:0 0 12px}
.ag-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;padding-bottom:100px}
.ag-card{background:#fff;border-radius:30px;overflow:hidden;box-shadow:var(--ag-shadow);transition:.2s}
.ag-card:hover{transform:translateY(-5px)}
.ag-card>a{display:block}.ag-card img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.ag-card-body{padding:24px}.ag-card h2{font-family:"Baloo 2";font-size:26px;margin:5px 0 8px}.ag-card h2 a{text-decoration:none}
.ag-card-date{font-size:13px;font-weight:900;color:#4c9560;text-transform:uppercase}.ag-card p{color:var(--ag-muted);line-height:1.65}
.ag-read{font-weight:900;color:#3f8b55;text-decoration:none}
.ag-activity-hero-image{margin-top:-40px;position:relative}.ag-activity-hero-image img{width:100%;max-height:560px;object-fit:cover;border-radius:36px;box-shadow:var(--ag-shadow)}

/* =========================================================
   12. RESPONSIVE
   ========================================================= */
@media(max-width:1000px){
  .ag-nav{display:none}.ag-header-cta{display:none}.ag-menu-toggle{display:flex}.ag-mobile-menu{display:block}
  .ag-home-hero{padding-top:55px}
  .ag-home-hero-grid{grid-template-columns:1fr;gap:25px}
  .ag-home-hero-content{text-align:center}.ag-home-hero-description{margin-left:auto;margin-right:auto}.ag-home-hero-actions{justify-content:center}
  .ag-home-playground{width:min(570px,100%);margin:0 auto}
  .ag-story-grid,.ag-groups-grid,.ag-voices-grid{gap:17px}
  .ag-groups-grid{grid-template-columns:repeat(2,1fr)}
  .ag-page-grid{grid-template-columns:1fr}.ag-gallery{position:static}
}
@media(max-width:780px){
  .ag-home-section{padding:72px 0}
  .ag-story-grid,.ag-groups-grid,.ag-voices-grid{grid-template-columns:1fr}
  .ag-story-card{min-height:auto}
  .ag-activities-grid{grid-template-columns:repeat(2,1fr)}
  .ag-home-cta-box{grid-template-columns:1fr;padding:42px 35px;text-align:center}.ag-home-cta-content{margin:auto}.ag-home-cta-chick{font-size:105px;margin-top:20px}
  .ag-cards{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .ag-header-container{min-height:76px}.ag-brand-bubble{width:46px;height:46px;border-radius:15px}.ag-mini-chick{width:29px;height:29px}
  .ag-brand-text strong{font-size:17px}.ag-brand-text small{font-size:9px}
  .ag-home-hero{min-height:auto;padding:45px 0 85px}.ag-home-hero-title{font-size:49px}.ag-home-hero-description{font-size:16px}
  .ag-next-event{justify-content:center;line-height:1.4}
  .ag-home-playground{min-height:365px;transform:scale(.88);transform-origin:center bottom;margin-top:-15px}
  .ag-school{width:245px;height:185px}.ag-tree{transform:scale(.78);transform-origin:bottom}.ag-tree-right{transform:scale(.72)}
  .ag-section-heading{margin-bottom:34px}.ag-section-heading h2{font-size:38px}
  .ag-day-timeline:before{left:30px}.ag-day-item{grid-template-columns:62px 1fr;gap:12px;padding-right:0}.ag-day-icon{width:62px;height:62px;border-radius:20px;font-size:27px}.ag-day-content{padding:17px}
  .ag-activities-grid{gap:11px}.ag-activity-item{min-height:125px}.ag-activity-item span{font-size:32px}
  .ag-home-cta{padding:65px 0}.ag-home-cta-box{padding:38px 24px;border-radius:30px}.ag-home-cta-content h2{font-size:37px}
  .ag-page-hero{padding:65px 0}.ag-page-layout{padding:55px 0}.ag-cards{grid-template-columns:1fr}.ag-gallery-grid{grid-template-columns:1fr 1fr}
}

/* =========================================================
   13. ACTIVITATE - PAGINA + GALERIE NATIVA WORDPRESS
   ========================================================= */
.ag-activity-hero{
  position:relative;overflow:hidden;padding:88px 0 112px;
  background:linear-gradient(135deg,#e7f8e8 0%,#eaf9f0 52%,#e5f6ff 100%);
}
.ag-activity-hero:before{content:"";position:absolute;width:230px;height:230px;right:-70px;top:-85px;border-radius:50%;background:rgba(255,255,255,.42)}
.ag-activity-hero:after{content:"";position:absolute;width:150px;height:150px;left:-55px;bottom:-70px;border-radius:50%;background:rgba(255,255,255,.48)}
.ag-activity-hero-inner{position:relative;z-index:2;text-align:center;max-width:900px}
.ag-activity-back{display:inline-block;margin-bottom:24px;color:#56866a;font-size:13px;font-weight:900;text-decoration:none}
.ag-activity-kicker{display:block;margin-bottom:12px;color:#4d9560;font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.ag-activity-hero h1{max-width:850px;margin:0 auto;font-family:"Baloo 2",sans-serif;font-size:clamp(48px,6vw,76px);line-height:1.02;color:#315743;letter-spacing:-.025em}
.ag-activity-date{display:inline-flex;margin-top:20px;padding:9px 15px;border-radius:999px;background:#fff;color:#4d765e;font-size:13px;font-weight:900;box-shadow:0 10px 25px rgba(47,90,67,.08)}
.ag-activity-cover{position:relative;z-index:4;margin-top:-62px}
.ag-activity-cover img{display:block;width:100%;max-height:590px;object-fit:cover;border:8px solid #fff;border-radius:34px;box-shadow:0 24px 60px rgba(47,90,67,.14)}
.ag-activity-body{padding:72px 0 105px;background:#fff}
.ag-activity-body-inner{max-width:1050px}
.ag-activity-story-label{margin-bottom:18px;text-align:center;color:#4d9560;font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.ag-activity-content{font-size:18px;line-height:1.82;color:#536e60}
.ag-activity-content>p:not(.has-text-align-center){max-width:800px;margin-left:auto;margin-right:auto}
.ag-activity-content>p:first-child{font-size:20px;color:#426553}
.ag-activity-content h2,.ag-activity-content h3{font-family:"Baloo 2",sans-serif;color:#315743}

/* Galeria este blocul nativ Gutenberg, deja prezent in Activitate. */
.ag-activity-content .wp-block-gallery{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:14px!important;
  margin:48px 0 0!important;
  padding:0!important;
}
.ag-activity-content .wp-block-gallery .wp-block-image{
  width:100%!important;margin:0!important;overflow:hidden;border-radius:22px;background:#edf7ef;
}
.ag-activity-content .wp-block-gallery .wp-block-image:first-child{
  grid-column:span 2;grid-row:span 2;
}
.ag-activity-content .wp-block-gallery .wp-block-image img{
  display:block;width:100%!important;height:100%!important;min-height:245px;aspect-ratio:4/3;object-fit:cover!important;transition:transform .3s ease;
}
.ag-activity-content .wp-block-gallery .wp-block-image:first-child img{min-height:504px}
.ag-activity-content .wp-block-gallery .wp-block-image:hover img{transform:scale(1.025)}
.ag-activity-content .wp-block-gallery figcaption{font-size:12px!important;background:linear-gradient(transparent,rgba(0,0,0,.55))!important}

@media(max-width:780px){
  .ag-activity-hero{padding:65px 0 92px}.ag-activity-body{padding:58px 0 80px}
  .ag-activity-content .wp-block-gallery{grid-template-columns:1fr 1fr!important}
  .ag-activity-content .wp-block-gallery .wp-block-image:first-child{grid-column:1/-1;grid-row:auto}
  .ag-activity-content .wp-block-gallery .wp-block-image:first-child img{min-height:330px}
}
@media(max-width:520px){
  .ag-activity-hero h1{font-size:45px}.ag-activity-cover{margin-top:-42px}.ag-activity-cover img{border-width:5px;border-radius:25px}
  .ag-activity-content{font-size:16px}.ag-activity-content>p:first-child{font-size:18px}
  .ag-activity-content .wp-block-gallery{grid-template-columns:1fr!important;gap:10px!important}
  .ag-activity-content .wp-block-gallery .wp-block-image:first-child{grid-column:auto}
  .ag-activity-content .wp-block-gallery .wp-block-image img,.ag-activity-content .wp-block-gallery .wp-block-image:first-child img{min-height:260px}
}


/* =========================================================
   14. ACTIVITATI - FILTRARE, SORTARE, PAGINARE
   ========================================================= */
.ag-activity-filters{padding:0 0 34px}
.ag-filter-form{display:flex;align-items:center;gap:11px;flex-wrap:wrap;padding:15px;border:1px solid #e7f0e9;border-radius:22px;background:#fff;box-shadow:0 12px 34px rgba(47,90,67,.07)}
.ag-filter-form label{margin:0}
.ag-filter-search{flex:1 1 300px}
.ag-filter-form input,.ag-filter-form select{width:100%;height:48px;padding:0 15px;border:1px solid #dfeae2;border-radius:14px;background:#f9fcfa;color:#355b49;font:700 14px "Nunito",sans-serif;outline:none}
.ag-filter-form select{min-width:160px;cursor:pointer}
.ag-filter-form input:focus,.ag-filter-form select:focus{border-color:#73c97d;box-shadow:0 0 0 3px rgba(103,201,111,.12)}
.ag-filter-submit{height:48px;padding:0 20px;border:0;border-radius:14px;background:#67c96f;color:#fff;font:900 14px "Nunito",sans-serif;cursor:pointer}
.ag-filter-reset{height:48px;display:inline-flex;align-items:center;padding:0 12px;color:#668073;font-size:13px;font-weight:900;text-decoration:none}
.ag-filter-count{padding:12px 5px 0;color:#809087;font-size:13px;font-weight:800}
.ag-activities-archive .ag-cards{padding-bottom:38px}
.ag-card-image{display:block;overflow:hidden}
.ag-card-image img{transition:transform .3s ease}
.ag-card:hover .ag-card-image img{transform:scale(1.025)}
.ag-pagination{display:flex;justify-content:center;align-items:center;gap:7px;padding:15px 0 100px}
.ag-pagination .page-numbers{min-width:42px;height:42px;display:grid;place-items:center;padding:0 12px;border-radius:13px;background:#f0f8f2;color:#416b52;font-weight:900;text-decoration:none}
.ag-pagination .page-numbers.current{background:#67c96f;color:#fff}
.ag-pagination a.page-numbers:hover{background:#dff3e3}
.ag-no-results{max-width:620px;margin:20px auto 100px;padding:50px 30px;text-align:center;border-radius:30px;background:#f5fbf6}
.ag-no-results>div{font-size:55px}.ag-no-results h2{margin:8px 0;font-family:"Baloo 2",sans-serif;font-size:32px;color:#315743}.ag-no-results p{margin:0 0 22px;color:#71847a}
@media(max-width:700px){
 .ag-filter-form{align-items:stretch}
 .ag-filter-search,.ag-filter-form label{flex:1 1 100%}
 .ag-filter-form select{min-width:0}
 .ag-filter-submit{flex:1}.ag-filter-reset{justify-content:center}
}
/* ACTIVITATE - GALERIE FOTO CUSTOM */
.ag-activity-photos{margin-top:55px}
.ag-activity-gallery-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:15px;margin-bottom:20px}
.ag-activity-gallery-heading span{font-family:"Baloo 2",sans-serif;font-size:30px;font-weight:700;color:#315743}
.ag-activity-gallery-heading small{padding:7px 12px;border-radius:999px;background:#edf9ef;color:#4b9560;font-weight:900}
.ag-activity-gallery{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-flow:dense;gap:14px}
.ag-activity-gallery-item{display:block;overflow:hidden;border-radius:24px;background:#f2f8f3;box-shadow:0 12px 30px rgba(47,90,67,.07)}
.ag-activity-gallery-item:nth-child(7n+1){grid-column:span 2;grid-row:span 2}
.ag-activity-gallery-item img{display:block;width:100%;height:100%;min-height:245px;aspect-ratio:4/3;object-fit:cover;transition:transform .3s ease}
.ag-activity-gallery-item:nth-child(7n+1) img{min-height:504px}
.ag-activity-gallery-item:hover img{transform:scale(1.025)}
@media(max-width:780px){
 .ag-activity-gallery{grid-template-columns:repeat(2,1fr)}
 .ag-activity-gallery-item:nth-child(7n+1){grid-column:1/-1;grid-row:auto}
 .ag-activity-gallery-item:nth-child(7n+1) img{min-height:320px}
}
@media(max-width:520px){
 .ag-activity-gallery-heading{align-items:flex-start;flex-direction:column}
 .ag-activity-gallery{grid-template-columns:1fr}
 .ag-activity-gallery-item:nth-child(7n+1){grid-column:auto}
 .ag-activity-gallery-item img,.ag-activity-gallery-item:nth-child(7n+1) img{min-height:260px}
}

/* GALERIE AGRICOLA */
.ag-gallery-page{background:#fff}
.ag-gallery-hero{position:relative;padding:86px 0 80px;text-align:center;background:linear-gradient(180deg,#effbf1 0%,#fff 100%)}
.ag-gallery-kicker{display:inline-flex;padding:9px 15px;border-radius:999px;background:#fff;color:#4b8d5b;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;box-shadow:0 9px 24px rgba(47,90,67,.07)}
.ag-gallery-hero h1{max-width:820px;margin:18px auto 13px;font-family:"Baloo 2",sans-serif;font-size:clamp(46px,5.7vw,72px);line-height:1;color:#315743}
.ag-gallery-hero h1 span{color:#62c66f}
.ag-gallery-hero p{max-width:690px;margin:0 auto;color:#687e72;font-size:17px;line-height:1.7}
.ag-gallery-section{padding:35px 0 105px}
.ag-photo-grid{columns:4 250px;column-gap:15px}
.ag-photo-item{position:relative;display:block;overflow:hidden;margin:0 0 15px;break-inside:avoid;border-radius:22px;background:#eef7f0;box-shadow:0 8px 25px rgba(47,90,67,.07);cursor:zoom-in}
.ag-photo-item img{display:block;width:100%;height:auto;transition:transform .35s ease}
.ag-photo-item:hover img{transform:scale(1.025)}
.ag-photo-overlay{position:absolute;right:13px;bottom:13px;width:38px;height:38px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.92);color:#4ba55c;font-size:23px;font-weight:500;opacity:0;transform:translateY(5px);transition:.2s ease;box-shadow:0 5px 16px rgba(0,0,0,.12)}
.ag-photo-item:hover .ag-photo-overlay{opacity:1;transform:none}
.ag-gallery-empty{max-width:620px;margin:40px auto;padding:55px 30px;text-align:center;border-radius:30px;background:#f3faf4}
.ag-gallery-empty>div{font-size:58px}.ag-gallery-empty h2{margin:8px 0;font-family:"Baloo 2",sans-serif;font-size:32px;color:#315743}.ag-gallery-empty p{color:#71847a}
.ag-lightbox{position:fixed;z-index:999999;inset:0;display:none;align-items:center;justify-content:center;padding:55px 80px;background:rgba(20,42,31,.94);backdrop-filter:blur(8px)}
.ag-lightbox.is-open{display:flex}
.ag-lightbox-stage{max-width:min(1200px,90vw);max-height:88vh;text-align:center}
.ag-lightbox-stage img{display:block;max-width:100%;max-height:78vh;margin:auto;border-radius:18px;box-shadow:0 25px 80px rgba(0,0,0,.3)}
.ag-lightbox-caption{margin-top:13px;color:#fff;font-weight:700}.ag-lightbox-caption:empty{display:none}
.ag-lightbox-count{margin-top:8px;color:rgba(255,255,255,.65);font-size:12px;font-weight:900}
.ag-lightbox-close,.ag-lightbox-prev,.ag-lightbox-next{position:absolute;border:0;background:rgba(255,255,255,.12);color:#fff;cursor:pointer;backdrop-filter:blur(5px)}
.ag-lightbox-close{right:24px;top:22px;width:46px;height:46px;border-radius:50%;font-size:31px;line-height:1}
.ag-lightbox-prev,.ag-lightbox-next{top:50%;width:52px;height:68px;margin-top:-34px;border-radius:18px;font-size:45px;line-height:1}
.ag-lightbox-prev{left:20px}.ag-lightbox-next{right:20px}
body.ag-lightbox-open{overflow:hidden}
@media(max-width:700px){
 .ag-gallery-hero{padding:65px 0 55px}.ag-gallery-section{padding-top:20px}
 .ag-photo-grid{columns:2 145px;column-gap:9px}.ag-photo-item{margin-bottom:9px;border-radius:15px}
 .ag-photo-overlay{display:none}
 .ag-lightbox{padding:65px 12px 80px}.ag-lightbox-prev,.ag-lightbox-next{top:auto;bottom:18px;width:48px;height:48px;border-radius:50%;font-size:34px}.ag-lightbox-prev{left:calc(50% - 58px)}.ag-lightbox-next{right:calc(50% - 58px)}
}


/* =========================================================
   ASOCIATIA PUISORII MOTATI
   ========================================================= */
.ag-association-page{overflow:hidden;background:#fff;color:#365b48}
.ag-association-hero{position:relative;padding:100px 0 110px;text-align:center;background:linear-gradient(180deg,#eaf9ee 0%,#f7fcf8 100%)}
.ag-association-hero:after{content:"";position:absolute;left:-4%;right:-4%;bottom:-48px;height:85px;border-radius:50% 50% 0 0/70% 70% 0 0;background:#fff}
.ag-association-hero-inner{position:relative;z-index:2}
.ag-association-kicker{display:inline-flex;padding:9px 16px;border-radius:999px;background:#fff;color:#4d8d5d;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;box-shadow:0 9px 25px rgba(47,90,67,.07)}
.ag-association-hero h1{max-width:1000px;margin:20px auto 16px;font-family:"Baloo 2",sans-serif;font-size:clamp(48px,6vw,76px);line-height:1.02;letter-spacing:-.035em;color:#315743}
.ag-association-hero h1 span{color:#62c66f}
.ag-association-hero p{max-width:720px;margin:auto;color:#687e72;font-size:18px;line-height:1.7}

.ag-association-pillars{padding:65px 0 90px}
.ag-association-pillar-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.ag-association-pillar{padding:31px;border-radius:28px;box-shadow:0 15px 40px rgba(47,90,67,.07)}
.ag-association-pillar-green{background:#e9f8eb}.ag-association-pillar-blue{background:#eaf7ff}.ag-association-pillar-yellow{background:#fff7d9}
.ag-association-pillar-icon{width:58px;height:58px;display:grid;place-items:center;margin-bottom:20px;border-radius:18px;background:#fff;font-size:28px}
.ag-association-pillar-label{font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.09em;color:#568267}
.ag-association-pillar h2{margin:5px 0 8px;font-family:"Baloo 2",sans-serif;font-size:27px;color:#315743}
.ag-association-pillar p{margin:0;color:#687e72;line-height:1.65}

.ag-association-about{padding:35px 0 100px}
.ag-association-about-grid{display:grid;grid-template-columns:1fr .9fr;gap:75px;align-items:center}
.ag-association-copy h2,.ag-association-section-head h2{margin:9px 0 22px;font-family:"Baloo 2",sans-serif;font-size:clamp(39px,4.2vw,57px);line-height:1.04;color:#315743}
.ag-association-copy h2 span,.ag-association-section-head h2 span{color:#62c66f}
.ag-association-copy p{font-size:17px;line-height:1.8;color:#687e72}
.ag-association-facts{padding:29px;border-radius:30px;background:#f3faf4;box-shadow:0 20px 55px rgba(47,90,67,.08)}
.ag-association-facts-head{display:flex;align-items:center;gap:14px;padding-bottom:20px;border-bottom:1px solid #dfece2}
.ag-association-facts-head>span{font-size:45px}.ag-association-facts-head small,.ag-association-fact small{display:block;color:#779084;font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.ag-association-facts-head strong{font-family:"Baloo 2",sans-serif;font-size:21px;color:#315743}
.ag-association-fact{display:grid;grid-template-columns:35px 1fr;gap:10px;padding:17px 0;border-bottom:1px solid #e1ece4}
.ag-association-fact:last-child{border:0;padding-bottom:0}.ag-association-fact>span{font-size:21px}.ag-association-fact strong{display:block;color:#365b48}.ag-association-fact em{display:block;margin-top:3px;color:#7a8d83;font-size:12px;font-style:normal;line-height:1.45}

.ag-association-mission{padding:10px 0 100px}
.ag-association-mission-card{position:relative;overflow:hidden;padding:62px 70px;border-radius:38px;background:linear-gradient(135deg,#58bd68,#78d181);color:#fff;box-shadow:0 25px 65px rgba(75,171,90,.18)}
.ag-association-mission-card:after{content:"";position:absolute;width:260px;height:260px;right:-80px;top:-100px;border:2px solid rgba(255,255,255,.14);border-radius:50%}
.ag-association-mission-mark{position:absolute;right:65px;bottom:-40px;font-family:Georgia,serif;font-size:250px;line-height:1;color:rgba(255,255,255,.12)}
.ag-association-mission-label{font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.1em}
.ag-association-mission h2{position:relative;z-index:2;max-width:850px;margin:12px 0 13px;font-family:"Baloo 2",sans-serif;font-size:clamp(37px,4.6vw,59px);line-height:1.06;color:#fff}
.ag-association-mission p{position:relative;z-index:2;margin:0;color:rgba(255,255,255,.87)}

.ag-association-objectives{padding:15px 0 105px}
.ag-association-section-head{text-align:center;margin-bottom:42px}
.ag-association-objective-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.ag-association-objective{padding:32px;border:1px solid #e5eee7;border-radius:27px;background:#fff;box-shadow:0 12px 35px rgba(47,90,67,.06)}
.ag-association-objective>span{font-size:35px}.ag-association-objective h3{margin:12px 0 7px;font-family:"Baloo 2",sans-serif;font-size:26px;color:#315743}.ag-association-objective p{margin:0;color:#6b8075;line-height:1.7}

.ag-association-statute{padding:0 0 100px}
.ag-association-statute-card{padding:48px;border-radius:35px;background:#f5faf6}
.ag-association-statute-intro{text-align:center;max-width:760px;margin:0 auto 35px}.ag-association-statute-intro h2{margin:8px 0;font-family:"Baloo 2",sans-serif;font-size:43px;color:#315743}.ag-association-statute-intro p{color:#6e8277}
.ag-association-statute-list{display:grid;grid-template-columns:1fr 1fr;gap:10px 30px}
.ag-association-statute-list>div{display:grid;grid-template-columns:45px 1fr;gap:12px;align-items:start;padding:16px 0;border-bottom:1px solid #dfeae2}
.ag-association-statute-list span{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:#e2f4e5;color:#4b9560;font-size:11px;font-weight:900}
.ag-association-statute-list p{margin:5px 0 0;color:#60766a;line-height:1.55}

.ag-association-sponsor{padding:0 0 110px}
.ag-association-sponsor-card{position:relative;overflow:hidden;display:grid;grid-template-columns:90px 1fr auto;align-items:center;gap:25px;padding:38px 42px;border-radius:32px;background:#315743;color:#fff}
.ag-association-sponsor-icon{font-size:62px}.ag-association-sponsor-copy span{font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.09em;color:#aee7b7}
.ag-association-sponsor-copy h2{margin:4px 0 6px;font-family:"Baloo 2",sans-serif;font-size:31px;line-height:1.08;color:#fff}.ag-association-sponsor-copy p{max-width:620px;margin:0;color:rgba(255,255,255,.75);line-height:1.55}
.ag-association-sponsor-actions{display:flex;flex-direction:column;gap:9px;min-width:190px}
.ag-btn-sponsor-download{display:inline-flex;align-items:center;justify-content:center;padding:13px 18px;border-radius:999px;background:#6dcc78;color:#fff!important;font-weight:900;text-decoration:none}
.ag-association-sponsor-unavailable{max-width:220px;padding:13px 16px;border-radius:15px;background:rgba(255,255,255,.1);color:rgba(255,255,255,.78);font-size:13px;text-align:center}

@media(max-width:950px){
 .ag-association-about-grid{grid-template-columns:1fr;gap:40px}
 .ag-association-sponsor-card{grid-template-columns:75px 1fr}.ag-association-sponsor-actions,.ag-association-sponsor-unavailable{grid-column:1/-1}
}
@media(max-width:720px){
 .ag-association-hero{padding:70px 0 85px}.ag-association-hero p{font-size:16px}
 .ag-association-pillar-grid,.ag-association-objective-grid,.ag-association-statute-list{grid-template-columns:1fr}
 .ag-association-pillars{padding-bottom:65px}.ag-association-about{padding-bottom:75px}
 .ag-association-mission-card{padding:42px 28px;border-radius:28px}.ag-association-mission-mark{right:10px}
 .ag-association-statute-card{padding:32px 22px;border-radius:27px}
 .ag-association-sponsor-card{grid-template-columns:1fr;text-align:center;padding:34px 24px}.ag-association-sponsor-icon{font-size:55px}.ag-association-sponsor-actions{width:100%;max-width:300px;margin:auto}
}



/* =========================================================
   15. HOME - IDENTITATE "PUISORII MOTATI" + ANIMATII
   Strat vizual adaugat peste CSS-ul existent
   ========================================================= */

/* Mot pentru puisorul din logo */
.ag-mini-chick:before{
  content:"";
  position:absolute;
  z-index:3;
  left:50%;
  top:-8px;
  width:8px;
  height:13px;
  border-radius:70% 20% 70% 25%;
  background:#f1b72f;
  transform:translateX(-50%) rotate(-8deg);
  box-shadow:-7px 4px 0 -1px #f1b72f,7px 4px 0 -1px #f1b72f;
  transform-origin:50% 100%;
  animation:ag-tuft-wiggle 3.4s ease-in-out infinite;
}

/* Puisorii din hero primesc mot + aripioare */
.ag-chick:before{
  content:"";
  position:absolute;
  z-index:4;
  left:50%;
  top:-15px;
  width:13px;
  height:21px;
  border-radius:75% 20% 70% 25%;
  background:#f3b932;
  transform:translateX(-50%) rotate(-7deg);
  box-shadow:-11px 6px 0 -2px #f3b932,11px 6px 0 -2px #f3b932;
  transform-origin:50% 100%;
  animation:ag-tuft-wiggle 2.8s ease-in-out infinite;
}
.ag-chick:after{
  content:"";
  position:absolute;
  left:-8px;
  top:34px;
  width:22px;
  height:30px;
  border-radius:70% 35% 65% 35%;
  background:#f6c944;
  transform:rotate(24deg);
  box-shadow:70px 0 0 #f6c944;
}

/* Hero-ul devine o mica scena animata */
.ag-school{
  transform-origin:50% 100%;
  animation:ag-school-breathe 5.8s ease-in-out infinite;
}
.ag-school-roof{
  transform-origin:50% 100%;
  animation:ag-roof-soft 5.8s ease-in-out infinite;
}
.ag-tree-left{
  transform-origin:50% 100%;
  animation:ag-tree-sway-left 4.8s ease-in-out infinite;
}
.ag-tree-right{
  transform-origin:50% 100%;
  animation:ag-tree-sway-right 5.3s ease-in-out infinite;
}
.ag-chick-one{
  animation:ag-chick-hop-one 3.8s ease-in-out infinite;
}
.ag-chick-two{
  transform-origin:50% 100%;
  animation:ag-chick-hop-two 4.25s ease-in-out .45s infinite;
}
.ag-playground-message{
  animation:ag-message-float 4.4s ease-in-out infinite;
}
.ag-hero-sun{
  animation:ag-sun-pulse 6s ease-in-out infinite;
}
.ag-hero-cloud-1{animation:ag-cloud-one 15s ease-in-out infinite alternate}
.ag-hero-cloud-2{animation:ag-cloud-two 18s ease-in-out infinite alternate}
.ag-hero-cloud-3{animation:ag-cloud-three 13s ease-in-out infinite alternate}
.ag-flower-1,.ag-flower-3{transform-origin:50% 100%;animation:ag-flower-sway 3.8s ease-in-out infinite}
.ag-flower-2,.ag-flower-4{transform-origin:50% 100%;animation:ag-flower-sway 4.2s ease-in-out .6s infinite reverse}

/* Puisorii din cuib: emoji-ul ramane, dar primeste un mot grafic */
.ag-nest-chick{
  filter:drop-shadow(0 9px 9px rgba(47,90,67,.08));
  transform-origin:50% 90%;
  animation:ag-nest-bob 4.4s ease-in-out infinite;
}
.ag-nest-chick:before{
  content:"";
  position:absolute;
  z-index:5;
  left:50%;
  top:-4px;
  width:11px;
  height:19px;
  border-radius:75% 20% 70% 25%;
  background:#eeb52e;
  transform:translateX(-50%) rotate(-8deg);
  box-shadow:-10px 6px 0 -2px #eeb52e,10px 6px 0 -2px #eeb52e;
}
.ag-group-card:nth-child(2) .ag-nest-chick{animation-delay:.45s}
.ag-group-card:nth-child(3) .ag-nest-chick{animation-delay:.9s}

/* Puisorul mare din CTA */
.ag-home-cta-chick{
  position:relative;
  transform-origin:50% 100%;
  animation:ag-cta-chick 4.1s ease-in-out infinite;
}
.ag-home-cta-chick:before{
  content:"";
  position:absolute;
  left:50%;
  top:5px;
  width:15px;
  height:25px;
  border-radius:75% 20% 70% 25%;
  background:#efb62f;
  transform:translateX(-50%) rotate(-7deg);
  box-shadow:-13px 7px 0 -3px #efb62f,13px 7px 0 -3px #efb62f;
}

/* Cardurile capata putina viata la hover */
.ag-story-card,.ag-group-card,.ag-day-content{
  transition:transform .25s ease,box-shadow .25s ease;
}
.ag-story-card:hover,.ag-group-card:hover{
  transform:translateY(-5px) rotate(-.25deg);
  box-shadow:0 26px 60px rgba(47,90,67,.13);
}
.ag-day-item:hover .ag-day-content{transform:translateX(4px)}
.ag-day-item:hover .ag-day-icon{transform:rotate(-3deg) scale(1.04)}
.ag-day-icon{transition:transform .25s ease}

/* Keyframes */
@keyframes ag-tuft-wiggle{
  0%,100%{transform:translateX(-50%) rotate(-8deg)}
  50%{transform:translateX(-50%) rotate(8deg)}
}
@keyframes ag-school-breathe{
  0%,100%{transform:translateX(-50%) translateY(0) rotate(0)}
  50%{transform:translateX(-50%) translateY(-6px) rotate(.35deg)}
}
@keyframes ag-roof-soft{
  0%,100%{filter:brightness(1)}
  50%{filter:brightness(1.035)}
}
@keyframes ag-tree-sway-left{
  0%,100%{transform:rotate(-1deg)}
  50%{transform:rotate(2deg)}
}
@keyframes ag-tree-sway-right{
  0%,100%{transform:scale(.9) rotate(1deg)}
  50%{transform:scale(.9) rotate(-2deg)}
}
@keyframes ag-chick-hop-one{
  0%,72%,100%{transform:translateY(0) rotate(0)}
  80%{transform:translateY(-9px) rotate(-3deg)}
  88%{transform:translateY(0) rotate(2deg)}
}
@keyframes ag-chick-hop-two{
  0%,68%,100%{transform:scale(.88) translateY(0) rotate(0)}
  77%{transform:scale(.88) translateY(-10px) rotate(3deg)}
  86%{transform:scale(.88) translateY(0) rotate(-2deg)}
}
@keyframes ag-message-float{
  0%,100%{transform:translateY(0) rotate(0)}
  50%{transform:translateY(-7px) rotate(.5deg)}
}
@keyframes ag-sun-pulse{
  0%,100%{transform:scale(1);box-shadow:0 0 0 16px rgba(255,217,99,.12)}
  50%{transform:scale(1.045);box-shadow:0 0 0 23px rgba(255,217,99,.08)}
}
@keyframes ag-cloud-one{
  from{transform:translateX(-8px) scale(.75)}
  to{transform:translateX(30px) scale(.75)}
}
@keyframes ag-cloud-two{
  from{transform:translateX(0) scale(.55)}
  to{transform:translateX(42px) scale(.55)}
}
@keyframes ag-cloud-three{
  from{transform:translateX(-10px) scale(.48)}
  to{transform:translateX(24px) scale(.48)}
}
@keyframes ag-flower-sway{
  0%,100%{transform:rotate(-4deg)}
  50%{transform:rotate(5deg)}
}
@keyframes ag-nest-bob{
  0%,75%,100%{transform:translateX(-50%) translateY(0) rotate(0)}
  83%{transform:translateX(-50%) translateY(-7px) rotate(-2deg)}
  91%{transform:translateX(-50%) translateY(0) rotate(2deg)}
}
@keyframes ag-cta-chick{
  0%,70%,100%{transform:translateY(0) rotate(0)}
  78%{transform:translateY(-8px) rotate(-2deg)}
  87%{transform:translateY(0) rotate(2deg)}
}

/* Pe mobil pastram miscarea, dar mai discreta */
@media(max-width:560px){
  .ag-school{animation-duration:7s}
  .ag-playground-message{animation-duration:5.5s}
  .ag-chick:before{top:-13px;transform:translateX(-50%) scale(.9) rotate(-7deg)}
}

/* Respectam setarea de accesibilitate a utilizatorului */
@media(prefers-reduced-motion:reduce){
  .ag-mini-chick:before,.ag-chick:before,.ag-school,.ag-school-roof,
  .ag-tree-left,.ag-tree-right,.ag-chick-one,.ag-chick-two,
  .ag-playground-message,.ag-hero-sun,.ag-hero-cloud-1,.ag-hero-cloud-2,
  .ag-hero-cloud-3,.ag-flower-1,.ag-flower-2,.ag-flower-3,.ag-flower-4,
  .ag-nest-chick,.ag-home-cta-chick{
    animation:none!important;
  }
}


/* =========================================================
   16. HERO - CASUTA "PUISORII MOTATI" MAI FESTIVA
   ========================================================= */

/* Firma de pe cladire */
.ag-school-front{overflow:visible!important}
.ag-school-sign{
  position:absolute;
  z-index:8;
  left:50%;
  top:13px;
  transform:translateX(-50%);
  min-width:180px;
  padding:7px 13px 6px;
  border:4px solid #fff8df;
  border-radius:12px;
  background:#67c775;
  color:#fff;
  font-family:"Baloo 2",sans-serif;
  font-size:14px;
  font-weight:800;
  line-height:1;
  text-align:center;
  white-space:nowrap;
  box-shadow:0 5px 0 #4ca95b,0 9px 16px rgba(47,90,67,.12);
  animation:ag-sign-bob 4.8s ease-in-out infinite;
}
.ag-school-sign span{
  display:inline-block;
  margin-right:4px;
  animation:ag-sign-chick 3s ease-in-out infinite;
}

/* Ghirlanda de stegulete */
.ag-school-bunting{
  position:absolute;
  z-index:9;
  left:8%;
  right:8%;
  top:-13px;
  height:28px;
  display:flex;
  justify-content:space-around;
  align-items:flex-start;
  border-top:2px solid rgba(70,112,79,.38);
  pointer-events:none;
}
.ag-school-bunting i{
  display:block;
  width:0;
  height:0;
  border-left:8px solid transparent;
  border-right:8px solid transparent;
  border-top:16px solid #ffca55;
  transform-origin:50% 0;
  animation:ag-flag-wave 2.6s ease-in-out infinite;
}
.ag-school-bunting i:nth-child(2),
.ag-school-bunting i:nth-child(6){border-top-color:#ef7e72;animation-delay:.15s}
.ag-school-bunting i:nth-child(3),
.ag-school-bunting i:nth-child(7){border-top-color:#69c77a;animation-delay:.3s}
.ag-school-bunting i:nth-child(4){border-top-color:#7bc6e8;animation-delay:.45s}
.ag-school-bunting i:nth-child(5){border-top-color:#f4a8bd;animation-delay:.6s}

/* Acoperisul devine mai jucaus */
.ag-school-roof:after{
  content:"★  ●  ★  ●  ★";
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  color:rgba(255,255,255,.7);
  font-size:10px;
  letter-spacing:8px;
  white-space:nowrap;
  text-shadow:0 2px 0 rgba(111,67,36,.08);
}

/* Ferestre mai "vii": reflexie care trece lent */
.ag-school-window{
  overflow:hidden;
}
.ag-school-window:after{
  content:"";
  position:absolute;
  top:-30%;
  left:-45%;
  width:28%;
  height:160%;
  background:rgba(255,255,255,.5);
  transform:rotate(18deg);
  animation:ag-window-shine 7s ease-in-out infinite;
}
.ag-school-window:nth-of-type(2):after{animation-delay:1.1s}

/* Floricelele din scena primesc miscari usor diferite */
.ag-playground:after{
  content:"✦";
  position:absolute;
  z-index:2;
  right:12%;
  top:17%;
  color:#fff1a7;
  font-size:17px;
  text-shadow:-32px 17px 0 #fff,-64px -5px 0 rgba(255,255,255,.75);
  animation:ag-sparkle 3.2s ease-in-out infinite;
  pointer-events:none;
}

/* Usita are o pulsatie foarte discreta, ca o casuta vie */
.ag-school-door{
  transform-origin:50% 100%;
  animation:ag-door-welcome 5.5s ease-in-out infinite;
}

/* Mai multa profunzime sub cladire */
.ag-school:after{
  content:"";
  position:absolute;
  z-index:-1;
  left:12%;
  right:12%;
  bottom:-11px;
  height:18px;
  border-radius:50%;
  background:rgba(52,92,66,.11);
  filter:blur(5px);
  animation:ag-school-shadow 5.8s ease-in-out infinite;
}

@keyframes ag-sign-bob{
  0%,100%{transform:translateX(-50%) translateY(0) rotate(-.5deg)}
  50%{transform:translateX(-50%) translateY(-2px) rotate(.5deg)}
}
@keyframes ag-sign-chick{
  0%,75%,100%{transform:rotate(0) translateY(0)}
  82%{transform:rotate(-8deg) translateY(-2px)}
  90%{transform:rotate(7deg) translateY(0)}
}
@keyframes ag-flag-wave{
  0%,100%{transform:rotate(-4deg) scaleX(1)}
  50%{transform:rotate(6deg) scaleX(.92)}
}
@keyframes ag-window-shine{
  0%,62%{left:-45%;opacity:0}
  68%{opacity:.7}
  80%{left:125%;opacity:.35}
  100%{left:125%;opacity:0}
}
@keyframes ag-sparkle{
  0%,100%{opacity:.3;transform:scale(.8) rotate(0)}
  50%{opacity:1;transform:scale(1.2) rotate(18deg)}
}
@keyframes ag-door-welcome{
  0%,78%,100%{filter:brightness(1)}
  86%{filter:brightness(1.08)}
}
@keyframes ag-school-shadow{
  0%,100%{transform:scaleX(1);opacity:.9}
  50%{transform:scaleX(.93);opacity:.65}
}

@media(max-width:560px){
  .ag-school-sign{
    min-width:145px;
    padding:6px 9px 5px;
    font-size:11px;
    top:10px;
  }
  .ag-school-bunting{top:-10px}
  .ag-school-bunting i{
    border-left-width:6px;
    border-right-width:6px;
    border-top-width:12px;
  }
}

@media(prefers-reduced-motion:reduce){
  .ag-school-sign,.ag-school-sign span,.ag-school-bunting i,
  .ag-school-window:after,.ag-playground:after,.ag-school-door,.ag-school:after{
    animation:none!important;
  }
}

/* =========================================================
   ECHIPA AGRICOLA - CSS UNIC, CURAT
   ========================================================= */
.ag-team-page{
  background:#fff;
  color:#315743;
  overflow:hidden;
}
.ag-team-page *{box-sizing:border-box}

.ag-team-hero{
  padding:72px 0 54px;
  text-align:center;
  background:linear-gradient(180deg,#eaf9ee 0%,#fff 100%);
}
.ag-team-kicker{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  color:#4d8d5d;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  box-shadow:0 8px 22px rgba(47,90,67,.07);
}
.ag-team-hero h1{
  max-width:900px;
  margin:17px auto 13px;
  color:#315743;
  font-family:"Baloo 2",sans-serif;
  font-size:clamp(42px,5.2vw,66px);
  line-height:1.02;
  letter-spacing:-.02em;
}
.ag-team-hero h1 span,
.ag-team-section-head h2 span{color:#62c66f}
.ag-team-hero p{
  max-width:700px;
  margin:0 auto;
  color:#6a8074;
  font-size:16px;
  line-height:1.65;
}
.ag-team-section-head{
  max-width:720px;
  margin:0 auto 28px;
  text-align:center;
}
.ag-team-section-head .ag-section-kicker{
  font-size:9px;
}
.ag-team-section-head h2{
  margin:6px 0 8px;
  color:#315743;
  font-family:"Baloo 2",sans-serif;
  font-size:clamp(32px,3.5vw,46px);
  line-height:1.04;
}
.ag-team-section-head p{
  margin:0;
  color:#70847a;
  font-size:14px;
  line-height:1.6;
}
.ag-team-role{
  display:inline-block;
  margin:0 0 4px;
  color:#58aa67;
  font-size:8px;
  line-height:1.2;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.09em;
}

/* Placeholderul este controlat strict - nu mai poate deveni gigantic */
.ag-team-placeholder{
  width:100% !important;
  height:100% !important;
  min-width:0 !important;
  min-height:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:hidden !important;
  background:linear-gradient(145deg,#edf8ef,#fff6d8) !important;
  font-size:58px !important;
  line-height:1 !important;
  text-align:center !important;
  transform:none !important;
}
.ag-team-placeholder img,
.ag-team-placeholder svg{
  max-width:70px !important;
  max-height:70px !important;
}

/* DIRECTOR - accent, nu jumatate de pagina */
.ag-team-director-section{
  padding:8px 0 52px;
}
.ag-team-director-section .ag-team-section-head{
  margin-bottom:15px;
}
.ag-director-card{
  width:100%;
  max-width:430px;
  min-height:0;
  margin:0 auto;
  display:grid;
  grid-template-columns:125px minmax(0,1fr);
  align-items:stretch;
  overflow:hidden;
  border-radius:20px;
  background:#f2faf3;
  box-shadow:0 11px 30px rgba(47,90,67,.08);
}
.ag-director-photo{
  width:125px;
  height:160px;
  min-height:160px;
  overflow:hidden;
  background:#e7f5e9;
}
.ag-director-photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.ag-director-photo .ag-team-placeholder{
  font-size:48px !important;
}
.ag-director-copy{
  min-width:0;
  padding:15px 17px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.ag-director-copy h2{
  margin:0 0 5px;
  color:#315743;
  font-family:"Baloo 2",sans-serif;
  font-size:19px;
  line-height:1.08;
  overflow-wrap:anywhere;
}
.ag-director-copy blockquote{
  margin:2px 0 6px;
  padding-left:8px;
  border-left:2px solid #75cf80;
  color:#52715f;
  font-size:10.5px;
  font-weight:800;
  font-style:italic;
  line-height:1.3;
}
.ag-director-copy p{
  margin:0;
  color:#6b8075;
  font-size:10.5px;
  line-height:1.4;
}

/* EDUCATOARE */
.ag-team-educators{
  padding:68px 0 76px;
  background:#f8fcf8;
}
.ag-educator-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px 18px;
  align-items:start;
}
.ag-educator-card{
  min-width:0;
  height:auto;
  overflow:hidden;
  border-radius:23px;
  background:#fff;
  box-shadow:0 12px 32px rgba(47,90,67,.07);
  transition:transform .22s ease,box-shadow .22s ease;
}
.ag-educator-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(47,90,67,.10);
}
.ag-educator-photo{
  width:100%;
  height:165px;
  min-height:165px;
  overflow:hidden;
  background:#edf7ef;
}
.ag-educator-photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.ag-educator-photo .ag-team-placeholder{
  font-size:58px !important;
}
.ag-educator-body{
  padding:18px 17px 20px;
}
.ag-educator-body h3{
  margin:0 0 9px;
  color:#315743;
  font-family:"Baloo 2",sans-serif;
  font-size:18px;
  line-height:1.12;
  letter-spacing:-.01em;
  overflow-wrap:anywhere;
}
.ag-educator-motto{
  margin:0 0 11px;
  padding:0 0 10px;
  border-bottom:1px solid rgba(76,149,96,.15);
  color:#52715f;
  font-size:13px;
  font-weight:800;
  font-style:italic;
  line-height:1.4;
}
.ag-educator-body p{
  margin:0;
  color:#6b8075;
  font-size:13px;
  line-height:1.52;
}
.ag-team-accent-1{border-bottom:5px solid #75cf80}
.ag-team-accent-2{border-bottom:5px solid #f3c95c}
.ag-team-accent-3{border-bottom:5px solid #82c9e8}
.ag-team-accent-4{border-bottom:5px solid #efabbc}

/* ASISTENTA MEDICALA */
.ag-team-medical{
  padding:64px 0 70px;
  background:linear-gradient(180deg,#fff 0%,#f3fbfb 100%);
}
.ag-team-medical .ag-team-section-head{
  margin-bottom:20px;
}
.ag-team-medical .ag-team-section-head h2 span{color:#67bfc8}
.ag-medical-card{
  width:100%;
  max-width:470px;
  min-height:0;
  margin:0 auto;
  display:grid;
  grid-template-columns:135px minmax(0,1fr);
  overflow:hidden;
  border:1px solid #dceff1;
  border-radius:21px;
  background:#fff;
  box-shadow:0 12px 32px rgba(47,90,67,.075);
}
.ag-medical-photo{
  width:135px;
  height:180px;
  min-height:180px;
  overflow:hidden;
  background:#eaf7f8;
}
.ag-medical-photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.ag-medical-photo .ag-team-placeholder{
  background:linear-gradient(145deg,#e8f7f8,#f6fbec) !important;
  font-size:46px !important;
}
.ag-medical-copy{
  min-width:0;
  padding:17px 19px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.ag-medical-copy .ag-team-role{color:#55a9b2}
.ag-medical-copy h3{
  margin:0 0 6px;
  color:#315743;
  font-family:"Baloo 2",sans-serif;
  font-size:20px;
  line-height:1.1;
  overflow-wrap:anywhere;
}
.ag-medical-motto{
  margin:0 0 8px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(85,169,178,.18);
  color:#52716c;
  font-size:12px;
  font-weight:800;
  font-style:italic;
  line-height:1.35;
}
.ag-medical-copy p{
  margin:0;
  color:#6b8075;
  font-size:12px;
  line-height:1.45;
}

/* INGRIJITOARE + BUCATARESE */
.ag-team-support{
  padding:70px 0;
  background:#fff;
}
.ag-team-kitchen{
  padding:62px 0 82px;
  background:#fffaf4;
}
.ag-support-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  align-items:start;
}
.ag-kitchen-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  max-width:860px;
  margin:0 auto;
}
.ag-support-card{
  min-width:0;
  padding:13px 13px 18px;
  overflow:hidden;
  text-align:center;
  border-radius:21px;
  background:#fff;
  box-shadow:0 10px 28px rgba(47,90,67,.065);
}
.ag-kitchen-card{background:#fffdf8}
.ag-support-photo{
  width:100%;
  height:180px;
  min-height:180px;
  overflow:hidden;
  border-radius:16px;
  background:#edf7ef;
}
.ag-support-photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.ag-support-photo .ag-team-placeholder{
  font-size:54px !important;
}
.ag-support-card h3{
  margin:12px 0 2px;
  color:#315743;
  font-family:"Baloo 2",sans-serif;
  font-size:18px;
  line-height:1.12;
  overflow-wrap:anywhere;
}
.ag-support-card>span{
  color:#78a087;
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

/* TABLETA */
@media(max-width:1050px){
  .ag-educator-grid,
  .ag-support-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .ag-kitchen-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .ag-educator-photo,
  .ag-support-photo{
    height:205px;
    min-height:205px;
  }
}

/* MOBIL */
@media(max-width:650px){
  .ag-team-hero{padding:58px 0 44px}
  .ag-team-hero p{font-size:14px}
  .ag-team-section-head{margin-bottom:22px}
  .ag-team-director-section{padding-bottom:45px}

  .ag-director-card{
    max-width:310px;
    grid-template-columns:92px minmax(0,1fr);
  }
  .ag-director-photo{
    width:92px;
    height:135px;
    min-height:135px;
  }
  .ag-director-copy{padding:12px 13px}
  .ag-director-copy h2{font-size:16px}
  .ag-director-copy blockquote{font-size:9.5px}
  .ag-director-copy p{font-size:9.5px}

  .ag-team-educators,
  .ag-team-medical,
  .ag-team-support,
  .ag-team-kitchen{padding:55px 0}

  .ag-educator-grid,
  .ag-support-grid,
  .ag-kitchen-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .ag-educator-card,
  .ag-support-card{
    width:100%;
    max-width:410px;
    margin:0 auto;
  }
  .ag-educator-photo,
  .ag-support-photo{
    height:220px;
    min-height:220px;
  }
  .ag-educator-body{padding:19px 19px 21px}
  .ag-educator-body h3{font-size:20px}
  .ag-educator-motto,
  .ag-educator-body p{font-size:14px}

  .ag-medical-card{
    max-width:330px;
    grid-template-columns:1fr;
  }
  .ag-medical-photo{
    width:100%;
    height:200px;
    min-height:200px;
  }
  .ag-medical-copy{
    padding:18px;
    text-align:center;
  }
}

/* =========================================================
   FACILITATI
   ========================================================= */
.ag-facilities-page{background:#fff;color:#315743;overflow:hidden}
.ag-facilities-hero{position:relative;padding:88px 0 80px;background:linear-gradient(135deg,#eefaf0 0%,#fff9e8 100%)}
.ag-facilities-hero-inner{display:grid;grid-template-columns:1.08fr .92fr;gap:55px;align-items:center}
.ag-facilities-kicker{display:inline-flex;padding:9px 15px;border-radius:999px;background:#fff;color:#4e9460;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;box-shadow:0 8px 24px rgba(47,90,67,.07)}
.ag-facilities-hero h1{margin:18px 0 18px;font-family:"Baloo 2",sans-serif;font-size:clamp(48px,5.8vw,76px);line-height:.98;letter-spacing:-.025em}
.ag-facilities-hero h1 span,.ag-facilities-intro h2 span,.ag-facilities-cta h2 span{color:#63c871}
.ag-facilities-hero-copy>p{max-width:650px;margin:0;color:#6c8175;font-size:17px;line-height:1.7}
.ag-facilities-hero-pills{display:flex;flex-wrap:wrap;gap:9px;margin-top:25px}
.ag-facilities-hero-pills span{padding:9px 12px;border-radius:12px;background:rgba(255,255,255,.82);font-size:12px;font-weight:800;box-shadow:0 6px 20px rgba(47,90,67,.05)}
.ag-facilities-hero-art{position:relative;min-height:390px;border-radius:42px;background:#dff5e4;box-shadow:inset 0 0 0 1px rgba(76,149,96,.06),0 22px 55px rgba(47,90,67,.08)}
.ag-facilities-big-chick{position:absolute;z-index:4;left:50%;top:50%;font-size:132px;transform:translate(-50%,-50%);filter:drop-shadow(0 15px 10px rgba(47,90,67,.10));animation:ag-fac-chick 4s ease-in-out infinite}
.ag-facilities-sun{position:absolute;right:38px;top:32px;width:62px;height:62px;border-radius:50%;background:#ffd963;box-shadow:0 0 0 13px rgba(255,217,99,.16)}
.ag-facilities-cloud{position:absolute;width:74px;height:23px;border-radius:999px;background:rgba(255,255,255,.82)}
.ag-facilities-cloud:before,.ag-facilities-cloud:after{content:"";position:absolute;border-radius:50%;background:inherit}
.ag-facilities-cloud:before{width:34px;height:34px;left:13px;bottom:5px}.ag-facilities-cloud:after{width:28px;height:28px;right:12px;bottom:4px}
.ag-facilities-cloud-one{left:35px;top:55px;animation:ag-fac-cloud 10s ease-in-out infinite alternate}
.ag-facilities-cloud-two{right:55px;bottom:55px;transform:scale(.75);animation:ag-fac-cloud-two 12s ease-in-out infinite alternate}
.ag-facilities-mini-card{position:absolute;z-index:5;display:flex;align-items:center;gap:7px;padding:10px 13px;border-radius:14px;background:#fff;font-size:18px;box-shadow:0 10px 25px rgba(47,90,67,.10);animation:ag-fac-float 4.5s ease-in-out infinite}
.ag-facilities-mini-card span{font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.06em}
.ag-facilities-mini-card-one{left:28px;bottom:42px}.ag-facilities-mini-card-two{right:25px;top:120px;animation-delay:.6s}.ag-facilities-mini-card-three{left:44px;top:145px;animation-delay:1.1s}

.ag-facilities-intro{padding:82px 0 35px;text-align:center}
.ag-facilities-intro h2{margin:8px 0 10px;font-family:"Baloo 2",sans-serif;font-size:clamp(38px,4.4vw,56px);line-height:1.03}
.ag-facilities-intro p{max-width:680px;margin:auto;color:#72857b;line-height:1.65}

.ag-facilities-grid-section{padding:20px 0 90px}
.ag-facilities-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.ag-facility-card{overflow:hidden;border-radius:29px;background:#fff;box-shadow:0 14px 38px rgba(47,90,67,.075);transition:transform .25s ease,box-shadow .25s ease}
.ag-facility-card:hover{transform:translateY(-5px);box-shadow:0 22px 48px rgba(47,90,67,.11)}
.ag-facility-media{position:relative;height:285px;overflow:hidden;background:#eef8ef}
.ag-facility-real-image{width:100%;height:100%;object-fit:cover;display:block}
.ag-facility-placeholder{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;background:linear-gradient(145deg,#eff9f1,#fff8df);color:#789080}
.ag-facility-placeholder-emoji{display:block;margin-bottom:8px;font-size:62px;filter:drop-shadow(0 8px 8px rgba(47,90,67,.08))}
.ag-facility-placeholder strong{font-family:"Baloo 2",sans-serif;font-size:19px;color:#52705e}
.ag-facility-placeholder small{margin-top:2px;font-size:11px;font-weight:800;opacity:.7}
.ag-facility-number{position:absolute;right:15px;top:15px;display:grid;place-items:center;width:42px;height:42px;border-radius:14px;background:rgba(255,255,255,.9);font-family:"Baloo 2",sans-serif;font-size:16px;font-weight:900;box-shadow:0 8px 20px rgba(47,90,67,.08)}
.ag-facility-copy{display:grid;grid-template-columns:50px 1fr;gap:14px;padding:21px 23px 24px}
.ag-facility-icon{display:grid;place-items:center;width:50px;height:50px;border-radius:16px;background:#eff8f1;font-size:24px}
.ag-facility-copy h3{margin:1px 0 5px;font-family:"Baloo 2",sans-serif;font-size:23px;line-height:1.1}
.ag-facility-copy p{margin:0;color:#71847a;font-size:13.5px;line-height:1.55}
.ag-facility-green{border-bottom:5px solid #69c978}.ag-facility-yellow{border-bottom:5px solid #f2ca5a}.ag-facility-blue{border-bottom:5px solid #82cbe7}.ag-facility-pink{border-bottom:5px solid #efaebe}
.ag-facility-yellow .ag-facility-icon{background:#fff8df}.ag-facility-blue .ag-facility-icon{background:#eaf7fb}.ag-facility-pink .ag-facility-icon{background:#fff0f4}

.ag-care-feature{padding:25px 0 95px}
.ag-care-feature-card{display:grid;grid-template-columns:.8fr 1.2fr;max-width:930px;margin:auto;overflow:hidden;border-radius:36px;background:linear-gradient(135deg,#e9f8ed,#fff9e7);box-shadow:0 20px 55px rgba(47,90,67,.09)}
.ag-care-feature-art{position:relative;min-height:330px;background:rgba(255,255,255,.28)}
.ag-care-big-chick{position:absolute;left:50%;top:50%;font-size:105px;transform:translate(-50%,-50%);animation:ag-care-bob 4s ease-in-out infinite}
.ag-care-small-chick{position:absolute;font-size:43px}.ag-care-small-one{left:17%;bottom:48px;transform:rotate(-7deg)}.ag-care-small-two{right:15%;bottom:52px;transform:rotate(8deg)}
.ag-care-heart{position:absolute;right:22%;top:55px;color:#ef8797;font-size:29px;animation:ag-care-heart 2.8s ease-in-out infinite}
.ag-care-feature-copy{padding:48px 52px;align-self:center}
.ag-care-feature-copy h2{margin:8px 0 13px;font-family:"Baloo 2",sans-serif;font-size:47px;line-height:.98}
.ag-care-feature-copy h2 strong{color:#62c66f;font-weight:800}
.ag-care-feature-copy p{margin:0;color:#6c8175;line-height:1.65}
.ag-care-points{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.ag-care-points span{padding:8px 11px;border-radius:11px;background:#fff;font-size:11px;font-weight:900}

.ag-facilities-cta{padding:25px 0 95px}
.ag-facilities-cta-inner{display:flex;justify-content:space-between;align-items:center;gap:30px;padding:44px 50px;border-radius:32px;background:#315743;color:#fff}
.ag-facilities-cta h2{margin:7px 0 0;font-family:"Baloo 2",sans-serif;font-size:42px;line-height:1.02}
.ag-facilities-cta .ag-section-kicker{color:#a9e5b1}

@keyframes ag-fac-chick{0%,100%{transform:translate(-50%,-50%) rotate(-1deg)}50%{transform:translate(-50%,-54%) rotate(1deg)}}
@keyframes ag-fac-cloud{from{transform:translateX(0)}to{transform:translateX(28px)}}
@keyframes ag-fac-cloud-two{from{transform:scale(.75) translateX(0)}to{transform:scale(.75) translateX(-30px)}}
@keyframes ag-fac-float{0%,100%{transform:translateY(0) rotate(-.5deg)}50%{transform:translateY(-7px) rotate(.5deg)}}
@keyframes ag-care-bob{0%,100%{transform:translate(-50%,-50%) rotate(-2deg)}50%{transform:translate(-50%,-55%) rotate(2deg)}}
@keyframes ag-care-heart{0%,100%{transform:scale(.9);opacity:.65}50%{transform:scale(1.15);opacity:1}}

@media(max-width:900px){
  .ag-facilities-hero-inner{grid-template-columns:1fr}.ag-facilities-hero-art{min-height:330px}
  .ag-facilities-grid{grid-template-columns:1fr}
  .ag-care-feature-card{grid-template-columns:1fr}.ag-care-feature-art{min-height:260px}
}
@media(max-width:620px){
  .ag-facilities-hero{padding:65px 0 55px}.ag-facilities-hero-art{min-height:285px;border-radius:30px}
  .ag-facilities-big-chick{font-size:100px}.ag-facilities-mini-card-three{display:none}
  .ag-facility-media{height:220px}.ag-facility-copy{grid-template-columns:42px 1fr;padding:18px}.ag-facility-icon{width:42px;height:42px;font-size:21px}.ag-facility-copy h3{font-size:20px}
  .ag-care-feature-copy{padding:30px 25px}.ag-care-feature-copy h2{font-size:38px}
  .ag-facilities-cta-inner{padding:32px 25px;flex-direction:column;align-items:flex-start}.ag-facilities-cta h2{font-size:34px}
}
@media(prefers-reduced-motion:reduce){
  .ag-facilities-big-chick,.ag-facilities-cloud,.ag-facilities-mini-card,.ag-care-big-chick,.ag-care-heart{animation:none!important}
}


/* =========================================================
   FACILITATI - OPTIONALE
   ========================================================= */
.ag-optionals-section{
  padding:82px 0 92px;
  background:linear-gradient(180deg,#fbfefb 0%,#f3faf4 100%);
}
.ag-optionals-head{margin-bottom:34px}
.ag-optionals-head h2 span{color:#63c871}
.ag-optionals-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:14px;
}
.ag-optional-card{
  position:relative;
  min-height:155px;
  padding:25px 15px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  border:1px solid rgba(71,132,87,.07);
  border-radius:24px;
  background:#fff;
  box-shadow:0 12px 30px rgba(47,90,67,.06);
  transition:transform .25s ease,box-shadow .25s ease;
}
.ag-optional-card:nth-child(2n){background:#fffaf0}
.ag-optional-card:nth-child(3n){background:#f0f9fb}
.ag-optional-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 38px rgba(47,90,67,.10);
}
.ag-optional-card>span{
  display:grid;
  place-items:center;
  width:62px;
  height:62px;
  margin-bottom:12px;
  border-radius:19px;
  background:rgba(255,255,255,.82);
  font-size:31px;
  box-shadow:0 7px 18px rgba(47,90,67,.06);
}
.ag-optional-card h3{
  margin:0;
  font-family:"Baloo 2",sans-serif;
  color:#315743;
  font-size:18px;
  line-height:1.12;
}
@media(max-width:1050px){
  .ag-optionals-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:620px){
  .ag-optionals-section{padding:65px 0 70px}
  .ag-optionals-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:11px}
  .ag-optional-card{min-height:135px;padding:20px 10px 17px;border-radius:20px}
  .ag-optional-card>span{width:54px;height:54px;font-size:27px}
  .ag-optional-card h3{font-size:16px}
}


/* =========================================================
   FOOTER - GRADINITA AGRICOLA
   ========================================================= */
.ag-footer-notice{position:relative;z-index:2;padding:65px 0 0;background:#fff}
.ag-footer-notice-card{
  position:relative;z-index:3;max-width:980px;margin:0 auto -48px;
  display:grid;grid-template-columns:78px 1fr;gap:24px;align-items:center;
  padding:28px 34px;border:1px solid rgba(202,169,66,.13);border-radius:28px;
  background:linear-gradient(135deg,#fff9df 0%,#fffdf3 55%,#eef9ef 100%);
  box-shadow:0 20px 50px rgba(47,90,67,.11)
}
.ag-footer-notice-icon{
  display:grid;place-items:center;width:78px;height:78px;border-radius:24px;
  background:#fff;font-size:43px;box-shadow:0 10px 25px rgba(47,90,67,.08);
  animation:ag-footer-chick-bob 4s ease-in-out infinite
}
.ag-footer-notice-kicker{
  display:block;margin-bottom:3px;color:#5da96b;font-size:10px;font-weight:900;
  letter-spacing:.1em;text-transform:uppercase
}
.ag-footer-notice h2{
  margin:0 0 3px;color:#315743;font-family:"Baloo 2",sans-serif;
  font-size:26px;line-height:1.08
}
.ag-footer-notice p{margin:0;color:#687f72;font-size:14px;line-height:1.55}
.ag-footer-notice p strong{color:#315743}

.ag-site-footer{
  position:relative;overflow:hidden;padding:105px 0 0;background:#294f3b;
  color:rgba(255,255,255,.78)
}
.ag-site-footer:before{
  content:"";position:absolute;left:-8%;right:-8%;top:0;height:110px;
  border-radius:0 0 50% 50%;background:rgba(255,255,255,.025);pointer-events:none
}
.ag-site-footer:after{
  content:"";position:absolute;right:-130px;bottom:40px;width:390px;height:390px;
  border:1px solid rgba(255,255,255,.045);border-radius:50%;
  box-shadow:0 0 0 65px rgba(255,255,255,.018),0 0 0 130px rgba(255,255,255,.012);
  pointer-events:none
}
.ag-site-footer .ag-container{position:relative;z-index:2}
.ag-footer-grid{
  display:grid;grid-template-columns:minmax(0,1.65fr) .7fr .9fr;
  gap:70px;padding:18px 0 58px
}
.ag-footer-logo{display:inline-flex;align-items:center;gap:12px;color:#fff;text-decoration:none}
.ag-footer-logo:hover{color:#fff}
.ag-footer-logo-chick{
  display:grid;place-items:center;width:52px;height:52px;border-radius:17px;
  background:#fff8d9;font-size:30px;box-shadow:0 8px 22px rgba(0,0,0,.08)
}
.ag-footer-logo strong{
  display:block;font-family:"Baloo 2",sans-serif;font-size:23px;line-height:1
}
.ag-footer-logo small{
  display:block;margin-top:4px;color:#b9ddc1;font-size:10px;font-weight:800;
  letter-spacing:.07em;text-transform:uppercase
}
.ag-footer-brand>p{
  max-width:440px;margin:19px 0;color:rgba(255,255,255,.66);
  font-size:13.5px;line-height:1.65
}
.ag-footer-contact{display:flex;flex-direction:column;align-items:flex-start;gap:8px}
.ag-footer-contact a,.ag-footer-contact span{
  color:rgba(255,255,255,.8);font-size:12.5px;line-height:1.4;text-decoration:none
}
.ag-footer-contact a{transition:color .2s ease,transform .2s ease}
.ag-footer-contact a:hover{color:#fff;transform:translateX(3px)}
.ag-footer-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.ag-footer-action{
  display:inline-flex;align-items:center;justify-content:center;min-height:38px;
  padding:0 16px;border:1px solid rgba(255,255,255,.14);border-radius:12px;
  background:rgba(255,255,255,.08);color:#fff!important;font-size:11px;
  font-weight:900;text-decoration:none!important;transition:.2s ease
}
.ag-footer-action:hover{transform:translateY(-2px);background:rgba(255,255,255,.14)}
.ag-footer-whatsapp{border-color:rgba(158,224,170,.22);background:#5ba96a}

.ag-footer-column{display:flex;flex-direction:column;align-items:flex-start;gap:9px}
.ag-footer-column h3{
  position:relative;margin:4px 0 11px;padding-bottom:11px;color:#fff;
  font-family:"Baloo 2",sans-serif;font-size:18px
}
.ag-footer-column h3:after{
  content:"";position:absolute;left:0;bottom:0;width:28px;height:3px;
  border-radius:999px;background:#e8c958
}
.ag-footer-column a{
  color:rgba(255,255,255,.66);font-size:12.5px;line-height:1.4;
  text-decoration:none;transition:color .2s ease,transform .2s ease
}
.ag-footer-column a:hover{color:#fff;transform:translateX(3px)}

.ag-footer-bottom{
  position:relative;display:flex;align-items:center;justify-content:space-between;
  gap:25px;min-height:68px;border-top:1px solid rgba(255,255,255,.09)
}
.ag-footer-bottom p{margin:0;color:rgba(255,255,255,.45);font-size:10.5px}
.ag-footer-powered a{
  color:#e8cd67;font-weight:900;letter-spacing:.04em;text-decoration:none
}
.ag-footer-powered a:hover{color:#fff}

.ag-footer-decor{position:absolute;inset:0;z-index:1;pointer-events:none}
.ag-footer-chick{position:absolute;opacity:.13;filter:grayscale(.15)}
.ag-footer-chick-one{left:3%;bottom:35px;font-size:72px;transform:rotate(-10deg)}
.ag-footer-chick-two{right:4%;top:115px;font-size:55px;transform:rotate(9deg)}

@keyframes ag-footer-chick-bob{
  0%,100%{transform:translateY(0) rotate(-2deg)}
  50%{transform:translateY(-5px) rotate(2deg)}
}
@media(max-width:900px){
  .ag-footer-grid{grid-template-columns:1.4fr 1fr 1fr;gap:35px}
}
@media(max-width:720px){
  .ag-footer-notice{padding-top:45px}
  .ag-footer-notice-card{
    margin-bottom:-38px;grid-template-columns:55px 1fr;gap:15px;
    padding:21px 19px;border-radius:22px
  }
  .ag-footer-notice-icon{width:55px;height:55px;border-radius:17px;font-size:31px}
  .ag-footer-notice h2{font-size:20px}
  .ag-footer-notice p{font-size:12.5px}
  .ag-site-footer{padding-top:83px}
  .ag-footer-grid{grid-template-columns:1fr 1fr;gap:38px 25px;padding-bottom:40px}
  .ag-footer-brand{grid-column:1/-1}
  .ag-footer-brand>p{max-width:520px}
  .ag-footer-bottom{
    min-height:82px;flex-direction:column;justify-content:center;
    align-items:flex-start;gap:5px
  }
}
@media(max-width:460px){
  .ag-footer-notice-card{grid-template-columns:1fr;text-align:center}
  .ag-footer-notice-icon{margin:auto}
  .ag-footer-grid{grid-template-columns:1fr}
  .ag-footer-brand{grid-column:auto}
  .ag-footer-column{padding-top:3px}
}
@media(prefers-reduced-motion:reduce){
  .ag-footer-notice-icon{animation:none!important}
}


/* =========================================================
   FOOTER NOTICE - COMPACT / INTEGRAT IN FOOTER
   ========================================================= */
.ag-footer-notice{
  position:relative !important;
  z-index:5 !important;
  padding:26px 0 0 !important;
  margin-bottom:0 !important;
  background:#fff !important;
}

.ag-footer-notice-card{
  max-width:820px !important;
  min-height:0 !important;
  margin:0 auto -30px !important;
  padding:15px 22px !important;
  grid-template-columns:50px minmax(0,1fr) !important;
  gap:15px !important;
  border-radius:19px !important;
  border:1px solid rgba(202,169,66,.15) !important;
  background:linear-gradient(135deg,#fff9df 0%,#fffdf4 58%,#eef9ef 100%) !important;
  box-shadow:0 12px 30px rgba(47,90,67,.10) !important;
}

.ag-footer-notice-icon{
  width:50px !important;
  height:50px !important;
  border-radius:15px !important;
  font-size:28px !important;
  box-shadow:0 6px 15px rgba(47,90,67,.07) !important;
}

.ag-footer-notice-kicker{
  margin:0 0 1px !important;
  font-size:8px !important;
  line-height:1.2 !important;
  letter-spacing:.11em !important;
}

.ag-footer-notice h2{
  margin:0 !important;
  font-size:18px !important;
  line-height:1.15 !important;
}

.ag-footer-notice p{
  margin:2px 0 0 !important;
  font-size:11.5px !important;
  line-height:1.35 !important;
}

/* Cardul intra peste footer; compensam doar cat trebuie */
.ag-site-footer{
  padding-top:78px !important;
}

@media(max-width:720px){
  .ag-footer-notice{
    padding:22px 16px 0 !important;
  }
  .ag-footer-notice-card{
    max-width:520px !important;
    margin-bottom:-26px !important;
    padding:14px 16px !important;
    grid-template-columns:44px minmax(0,1fr) !important;
    gap:12px !important;
    border-radius:17px !important;
  }
  .ag-footer-notice-icon{
    width:44px !important;
    height:44px !important;
    border-radius:13px !important;
    font-size:25px !important;
  }
  .ag-footer-notice h2{
    font-size:16px !important;
  }
  .ag-footer-notice p{
    font-size:10.5px !important;
  }
  .ag-site-footer{
    padding-top:68px !important;
  }
}

@media(max-width:460px){
  .ag-footer-notice-card{
    grid-template-columns:40px minmax(0,1fr) !important;
    text-align:left !important;
  }
  .ag-footer-notice-icon{
    width:40px !important;
    height:40px !important;
    margin:0 !important;
    font-size:23px !important;
  }
  .ag-footer-notice h2{
    font-size:15px !important;
  }
}


/* =========================================================
   FOOTER V2 - MAI CALD, MAI LIZIBIL, FARA "BANNER" PLUTITOR
   ========================================================= */

/* Mesajul despre taxa devine o banda naturala a footerului */
.ag-footer-notice{
  padding:0 !important;
  margin:0 !important;
  background:#294f3b !important;
}
.ag-footer-notice .ag-container{
  max-width:none !important;
  width:100% !important;
  padding:0 !important;
}
.ag-footer-notice-card{
  max-width:none !important;
  width:100% !important;
  min-height:84px !important;
  margin:0 !important;
  padding:18px max(24px,calc((100vw - 1320px)/2)) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:18px !important;
  border:0 !important;
  border-radius:0 !important;
  background:#f8f1d8 !important;
  box-shadow:none !important;
  text-align:left !important;
}
.ag-footer-notice-icon{
  flex:0 0 52px !important;
  width:52px !important;
  height:52px !important;
  border-radius:16px !important;
  background:#fff !important;
  font-size:29px !important;
  box-shadow:0 5px 15px rgba(47,90,67,.06) !important;
}
.ag-footer-notice-kicker{
  margin:0 0 2px !important;
  color:#529660 !important;
  font-size:10px !important;
  line-height:1.2 !important;
  letter-spacing:.1em !important;
}
.ag-footer-notice h2{
  margin:0 !important;
  color:#315743 !important;
  font-size:21px !important;
  line-height:1.15 !important;
}
.ag-footer-notice p{
  margin:3px 0 0 !important;
  color:#61766b !important;
  font-size:13.5px !important;
  line-height:1.4 !important;
}

/* Footer mai aerisit si text sensibil mai mare */
.ag-site-footer{
  padding-top:58px !important;
}
.ag-footer-grid{
  gap:65px !important;
  padding:22px 0 55px !important;
}
.ag-footer-logo strong{
  font-size:27px !important;
}
.ag-footer-logo small{
  margin-top:5px !important;
  font-size:11.5px !important;
}
.ag-footer-brand>p{
  max-width:500px !important;
  margin:21px 0 !important;
  font-size:15.5px !important;
  line-height:1.7 !important;
}
.ag-footer-contact{
  gap:10px !important;
}
.ag-footer-contact a,
.ag-footer-contact span{
  font-size:14.5px !important;
  line-height:1.45 !important;
}
.ag-footer-actions{
  gap:10px !important;
  margin-top:21px !important;
}
.ag-footer-action{
  min-height:44px !important;
  padding:0 19px !important;
  border-radius:13px !important;
  font-size:13px !important;
}
.ag-footer-column{
  gap:11px !important;
}
.ag-footer-column h3{
  margin-bottom:13px !important;
  font-size:21px !important;
}
.ag-footer-column a{
  font-size:14.5px !important;
  line-height:1.5 !important;
}
.ag-footer-bottom{
  min-height:76px !important;
}
.ag-footer-bottom p{
  font-size:12.5px !important;
}

/* Puii decorativi raman discreti */
.ag-footer-chick-one{font-size:62px !important}
.ag-footer-chick-two{font-size:50px !important}

@media(max-width:720px){
  .ag-footer-notice-card{
    min-height:0 !important;
    padding:17px 20px !important;
    justify-content:flex-start !important;
    gap:13px !important;
  }
  .ag-footer-notice-icon{
    flex-basis:46px !important;
    width:46px !important;
    height:46px !important;
    font-size:26px !important;
  }
  .ag-footer-notice h2{font-size:17px !important}
  .ag-footer-notice p{font-size:12px !important}

  .ag-site-footer{padding-top:48px !important}
  .ag-footer-brand>p{font-size:14.5px !important}
  .ag-footer-contact a,
  .ag-footer-contact span,
  .ag-footer-column a{font-size:14px !important}
  .ag-footer-column h3{font-size:20px !important}
  .ag-footer-bottom p{font-size:11.5px !important}
}

@media(max-width:460px){
  .ag-footer-notice-card{
    display:grid !important;
    grid-template-columns:44px 1fr !important;
    text-align:left !important;
  }
}


/* =========================================================
   INSCRIERE AGRICOLA
   ========================================================= */
.ag-enroll-page{background:#fff;color:#315743;overflow:hidden}
.ag-enroll-page *{box-sizing:border-box}
.ag-enroll-narrow{max-width:900px}

.ag-enroll-hero{
  padding:82px 0 76px;
  background:linear-gradient(135deg,#edf9ef 0%,#fff9e5 100%);
}
.ag-enroll-hero-inner{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:58px;
  align-items:center;
}
.ag-enroll-kicker{
  display:inline-flex;
  padding:9px 15px;
  border-radius:999px;
  background:#fff;
  color:#4e9460;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 8px 24px rgba(47,90,67,.07);
}
.ag-enroll-hero h1{
  margin:18px 0 18px;
  font-family:"Baloo 2",sans-serif;
  font-size:clamp(48px,5.6vw,74px);
  line-height:.98;
  letter-spacing:-.025em;
}
.ag-enroll-hero h1 span,
.ag-enroll-intro h2 span,
.ag-enroll-free h2 span,
.ag-enroll-groups h2 span,
.ag-enroll-steps h2 span,
.ag-enroll-faq h2 span{color:#62c66f}
.ag-enroll-hero-copy>p{
  max-width:690px;
  margin:0;
  color:#687e72;
  font-size:16.5px;
  line-height:1.72;
}
.ag-enroll-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:25px}
.ag-enroll-facts{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}
.ag-enroll-facts span{
  padding:8px 11px;
  border-radius:11px;
  background:rgba(255,255,255,.78);
  color:#557060;
  font-size:11px;
  font-weight:900;
}
.ag-enroll-hero-scene{
  position:relative;
  min-height:390px;
  overflow:hidden;
  border-radius:40px;
  background:#dff4e4;
  box-shadow:0 22px 55px rgba(47,90,67,.08);
}
.ag-enroll-house{
  position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%);
  font-size:125px;
  filter:drop-shadow(0 14px 10px rgba(47,90,67,.09));
}
.ag-enroll-chick{position:absolute;z-index:3;font-size:60px;animation:ag-enroll-bob 4s ease-in-out infinite}
.ag-enroll-chick-a{left:20%;bottom:47px}.ag-enroll-chick-b{right:17%;bottom:54px;animation-delay:.7s}
.ag-enroll-sun{
  position:absolute;right:35px;top:30px;width:60px;height:60px;
  border-radius:50%;background:#ffd964;box-shadow:0 0 0 13px rgba(255,217,100,.17)
}
.ag-enroll-cloud{position:absolute;width:75px;height:23px;border-radius:999px;background:rgba(255,255,255,.82)}
.ag-enroll-cloud-a{left:35px;top:55px}.ag-enroll-cloud-b{right:45px;bottom:105px;transform:scale(.75)}
.ag-enroll-scene-note{
  position:absolute;left:50%;top:35px;transform:translateX(-50%);
  padding:9px 13px;border-radius:13px;background:#fff;color:#557060;
  font-size:11px;font-weight:900;box-shadow:0 8px 22px rgba(47,90,67,.07)
}

.ag-enroll-intro{padding:88px 0 76px;text-align:center}
.ag-enroll-intro h2{
  margin:8px 0 20px;font-family:"Baloo 2",sans-serif;
  font-size:clamp(38px,4vw,54px);line-height:1.04
}
.ag-enroll-intro p{
  margin:0 auto 16px;color:#6b8075;font-size:15.5px;line-height:1.78
}
.ag-enroll-intro .ag-enroll-lead{color:#526e5d;font-size:17px;font-weight:650}

.ag-enroll-why{padding:10px 0 88px}
.ag-enroll-feature{
  display:grid;grid-template-columns:.75fr 1.25fr;gap:52px;align-items:center;
  max-width:1050px;margin:0 auto 70px
}
.ag-enroll-feature-right{grid-template-columns:1.25fr .75fr;margin-bottom:0}
.ag-enroll-feature-visual{
  min-height:310px;display:grid;place-items:center;border-radius:34px;
  background:linear-gradient(145deg,#e6f7ea,#f7fce9);
  box-shadow:0 15px 40px rgba(47,90,67,.07)
}
.ag-enroll-feature-visual-yellow{background:linear-gradient(145deg,#fff5d7,#edf9ef)}
.ag-enroll-feature-visual span{font-size:105px;filter:drop-shadow(0 12px 10px rgba(47,90,67,.08))}
.ag-enroll-feature-copy h2{
  margin:7px 0 15px;font-family:"Baloo 2",sans-serif;
  font-size:clamp(30px,3.2vw,43px);line-height:1.06
}
.ag-enroll-feature-copy p{margin:0 0 13px;color:#6a8074;font-size:14.5px;line-height:1.72}
.ag-enroll-text-link{display:inline-block;margin-top:5px;color:#4e9c5e;font-weight:900;text-decoration:none}

.ag-enroll-free{padding:82px 0;background:#2f5942}
.ag-enroll-free-inner{
  max-width:1000px;margin:auto;display:grid;grid-template-columns:105px 1fr;
  gap:30px;align-items:start
}
.ag-enroll-free-badge{
  display:grid;place-items:center;width:105px;height:105px;border-radius:30px;
  background:#fff8d9;font-size:57px;box-shadow:0 14px 35px rgba(0,0,0,.09)
}
.ag-enroll-free .ag-section-kicker{color:#b8e6c0}
.ag-enroll-free h2{
  margin:6px 0 15px;color:#fff;font-family:"Baloo 2",sans-serif;
  font-size:clamp(38px,4.2vw,55px);line-height:1
}
.ag-enroll-free-copy>p{max-width:790px;margin:0 0 12px;color:rgba(255,255,255,.76);font-size:14.5px;line-height:1.7}
.ag-enroll-free-copy .ag-enroll-free-main{color:#fff;font-size:16px}
.ag-enroll-free-note{
  max-width:760px;margin-top:20px;padding:13px 16px;border-radius:14px;
  background:rgba(255,255,255,.08);color:rgba(255,255,255,.78);font-size:12.5px;line-height:1.5
}
.ag-enroll-free-note strong{color:#f3d76f}

.ag-enroll-groups{padding:85px 0}
.ag-enroll-groups-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:980px;margin:auto}
.ag-enroll-group-card{
  position:relative;padding:25px 24px 27px;text-align:center;border-radius:26px;
  background:#f3faf4;box-shadow:0 12px 32px rgba(47,90,67,.065)
}
.ag-enroll-group-card:nth-child(2){background:#fff9e8}.ag-enroll-group-card:nth-child(3){background:#edf8fb}
.ag-enroll-group-age{
  display:inline-block;padding:6px 10px;border-radius:999px;background:#fff;
  color:#5c7666;font-size:9px;font-weight:900;letter-spacing:.06em;text-transform:uppercase
}
.ag-enroll-group-chick{margin:14px 0 7px;font-size:57px}
.ag-enroll-group-card h3{margin:0 0 8px;font-family:"Baloo 2",sans-serif;font-size:24px}
.ag-enroll-group-card p{margin:0;color:#6d8176;font-size:13px;line-height:1.55}

.ag-enroll-day{padding:80px 0;background:#f8fcf8}
.ag-enroll-day-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:65px;align-items:center}
.ag-enroll-day-copy h2{
  margin:7px 0 15px;font-family:"Baloo 2",sans-serif;font-size:clamp(34px,3.7vw,48px);line-height:1.05
}
.ag-enroll-day-copy p{margin:0 0 13px;color:#6a8074;font-size:14.5px;line-height:1.72}
.ag-enroll-day-list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.ag-enroll-day-list>div{
  min-height:145px;padding:19px;border-radius:21px;background:#fff;
  box-shadow:0 9px 25px rgba(47,90,67,.055)
}
.ag-enroll-day-list span{display:block;margin-bottom:10px;font-size:29px}
.ag-enroll-day-list strong{display:block;margin-bottom:4px;font-family:"Baloo 2",sans-serif;font-size:17px}
.ag-enroll-day-list small{color:#72857a;font-size:11.5px;line-height:1.45}

.ag-enroll-steps{padding:88px 0}
.ag-enroll-timeline{max-width:850px;margin:38px auto 0}
.ag-enroll-timeline article{
  position:relative;display:grid;grid-template-columns:58px 1fr;gap:20px;padding:0 0 32px
}
.ag-enroll-timeline article:not(:last-child):before{
  content:"";position:absolute;left:28px;top:56px;bottom:4px;width:2px;background:#dfeee2
}
.ag-enroll-step-number{
  position:relative;z-index:2;display:grid;place-items:center;width:58px;height:58px;
  border-radius:19px;background:#e9f7ec;color:#4f9b5e;font-family:"Baloo 2",sans-serif;
  font-size:18px;font-weight:900
}
.ag-enroll-timeline h3{margin:3px 0 5px;font-family:"Baloo 2",sans-serif;font-size:22px}
.ag-enroll-timeline p{margin:0;color:#6b8075;font-size:13.5px;line-height:1.6}

.ag-enroll-calendar{padding:75px 0;background:#fff9eb}
.ag-enroll-calendar-card{
  display:grid;grid-template-columns:75px 1fr auto;gap:22px;align-items:center;
  max-width:1050px;margin:auto;padding:27px 30px;border-radius:27px;background:#fff;
  box-shadow:0 13px 34px rgba(47,90,67,.07)
}
.ag-enroll-calendar-icon{
  display:grid;place-items:center;width:75px;height:75px;border-radius:22px;background:#edf8ef;font-size:38px
}
.ag-enroll-calendar-copy h2{margin:5px 0 5px;font-family:"Baloo 2",sans-serif;font-size:29px}
.ag-enroll-calendar-copy p{margin:0;color:#70847a;font-size:13px;line-height:1.55}
.ag-enroll-file-placeholder{
  display:inline-block;max-width:210px;padding:11px 14px;border-radius:12px;
  background:#f3f6f3;color:#708078;font-size:11px;font-weight:800;text-align:center
}
.ag-enroll-form-download{
  max-width:1050px;margin:12px auto 0;padding:16px 20px;display:flex;
  justify-content:space-between;align-items:center;gap:20px;border-radius:17px;background:rgba(255,255,255,.7)
}
.ag-enroll-form-download strong{display:block;font-size:13px}.ag-enroll-form-download span{font-size:11px;color:#74877c}
.ag-enroll-form-download a{color:#4e9b5d;font-size:12px;font-weight:900;text-decoration:none}

.ag-enroll-faq{padding:88px 0}
.ag-enroll-faq details{
  margin-bottom:10px;border:1px solid #e5eee7;border-radius:17px;background:#fff;overflow:hidden
}
.ag-enroll-faq summary{
  position:relative;padding:18px 48px 18px 20px;cursor:pointer;list-style:none;
  color:#315743;font-family:"Baloo 2",sans-serif;font-size:17px;font-weight:800
}
.ag-enroll-faq summary::-webkit-details-marker{display:none}
.ag-enroll-faq summary:after{content:"+";position:absolute;right:20px;top:50%;transform:translateY(-50%);font-size:22px;color:#65b873}
.ag-enroll-faq details[open] summary:after{content:"–"}
.ag-enroll-faq details p{margin:0;padding:0 20px 18px;color:#6b8075;font-size:13.5px;line-height:1.6}

.ag-enroll-final{padding:0 0 90px}
.ag-enroll-final-inner{
  display:flex;align-items:center;justify-content:space-between;gap:40px;
  padding:42px 48px;border-radius:31px;background:#eaf8ed
}
.ag-enroll-final h2{margin:6px 0 7px;font-family:"Baloo 2",sans-serif;font-size:38px}
.ag-enroll-final p{max-width:650px;margin:0;color:#6a8074;font-size:14px;line-height:1.6}
.ag-enroll-final-actions{display:flex;flex-wrap:wrap;gap:9px;flex-shrink:0}

@keyframes ag-enroll-bob{
  0%,100%{transform:translateY(0) rotate(-2deg)}
  50%{transform:translateY(-7px) rotate(2deg)}
}

@media(max-width:900px){
  .ag-enroll-hero-inner,.ag-enroll-day-grid{grid-template-columns:1fr}
  .ag-enroll-hero-scene{min-height:320px}
  .ag-enroll-feature,.ag-enroll-feature-right{grid-template-columns:1fr;gap:28px}
  .ag-enroll-feature-right .ag-enroll-feature-copy{order:2}
  .ag-enroll-feature-right .ag-enroll-feature-visual{order:1}
  .ag-enroll-feature-visual{min-height:250px}
  .ag-enroll-groups-grid{grid-template-columns:1fr}
  .ag-enroll-group-card{max-width:520px;width:100%;margin:auto}
  .ag-enroll-calendar-card{grid-template-columns:70px 1fr}
  .ag-enroll-calendar-action{grid-column:1/-1}
  .ag-enroll-final-inner{align-items:flex-start;flex-direction:column}
}
@media(max-width:620px){
  .ag-enroll-hero{padding:62px 0 55px}
  .ag-enroll-hero-copy>p{font-size:14.5px}
  .ag-enroll-hero-scene{min-height:275px;border-radius:29px}
  .ag-enroll-house{font-size:95px}.ag-enroll-chick{font-size:46px}
  .ag-enroll-intro,.ag-enroll-groups,.ag-enroll-steps,.ag-enroll-faq{padding:65px 0}
  .ag-enroll-intro{text-align:left}
  .ag-enroll-free{padding:60px 0}
  .ag-enroll-free-inner{grid-template-columns:1fr;gap:18px}
  .ag-enroll-free-badge{width:72px;height:72px;border-radius:22px;font-size:40px}
  .ag-enroll-day{padding:60px 0}
  .ag-enroll-day-list{grid-template-columns:1fr}
  .ag-enroll-day-list>div{min-height:0}
  .ag-enroll-timeline article{grid-template-columns:48px 1fr;gap:14px}
  .ag-enroll-step-number{width:48px;height:48px;border-radius:15px;font-size:15px}
  .ag-enroll-timeline article:not(:last-child):before{left:23px;top:47px}
  .ag-enroll-calendar{padding:55px 0}
  .ag-enroll-calendar-card{grid-template-columns:1fr;padding:22px}
  .ag-enroll-calendar-icon{width:60px;height:60px;font-size:31px}
  .ag-enroll-form-download{align-items:flex-start;flex-direction:column}
  .ag-enroll-final{padding-bottom:65px}
  .ag-enroll-final-inner{padding:30px 24px}
  .ag-enroll-final h2{font-size:31px}
}
@media(prefers-reduced-motion:reduce){
  .ag-enroll-chick{animation:none!important}
}


/* =========================================================
   DESPRE NOI - POVESTEA AGRICOLA
   ========================================================= */
.ag-about-page{overflow:hidden;background:#fff;color:#315743}
.ag-about-page *{box-sizing:border-box}
.ag-about-page h1,.ag-about-page h2,.ag-about-page h3{font-family:"Baloo 2",sans-serif}
.ag-about-page p{color:#687d72}
.ag-about-page .ag-section-kicker{font-size:9px;letter-spacing:.11em}
.ag-about-kicker{
  display:inline-flex;padding:8px 14px;border-radius:999px;background:#fff;
  color:#4f9560;font-size:10px;font-weight:900;letter-spacing:.09em;text-transform:uppercase;
  box-shadow:0 8px 22px rgba(47,90,67,.07)
}
.ag-about-hero{padding:88px 0 78px;background:linear-gradient(135deg,#edf9ef 0%,#fff8df 100%)}
.ag-about-hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:70px;align-items:center}
.ag-about-hero h1{
  margin:18px 0 18px;font-size:clamp(54px,6vw,82px);line-height:.94;letter-spacing:-.03em
}
.ag-about-hero h1 span,.ag-about-story h2 span,.ag-about-wide-heading h2 span,
.ag-about-unesco h2 span,.ag-about-split-heading h2 span,.ag-about-yard h2 span,
.ag-about-community h2 span,.ag-about-evolution h2 span,.ag-about-today h2 span{color:#62c66f}
.ag-about-hero-copy>p{max-width:690px;margin:0;font-size:16.5px;line-height:1.75}
.ag-about-hero-facts{display:flex;flex-wrap:wrap;gap:28px;margin-top:30px}
.ag-about-hero-facts div{display:flex;flex-direction:column}
.ag-about-hero-facts strong{font-family:"Baloo 2",sans-serif;font-size:28px;line-height:1;color:#315743}
.ag-about-hero-facts span{margin-top:5px;color:#74877c;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.ag-about-hero-mark{
  position:relative;min-height:360px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  overflow:hidden;border-radius:44px;background:#315743;color:#fff;box-shadow:0 22px 55px rgba(47,90,67,.13)
}
.ag-about-hero-mark:before,.ag-about-hero-mark:after{
  content:"";position:absolute;border:1px solid rgba(255,255,255,.09);border-radius:50%
}
.ag-about-hero-mark:before{width:290px;height:290px}.ag-about-hero-mark:after{width:390px;height:390px}
.ag-about-hero-year{position:relative;z-index:2;font-family:"Baloo 2",sans-serif;font-size:88px;font-weight:900;line-height:.8;color:#f1d466}
.ag-about-hero-chick{position:relative;z-index:2;margin:18px 0 7px;font-size:62px}
.ag-about-hero-mark small{position:relative;z-index:2;color:rgba(255,255,255,.68);font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}

.ag-about-years{position:relative;z-index:3;border-bottom:1px solid #edf2ed;background:#fff}
.ag-about-years .ag-container{display:flex;align-items:center;justify-content:center;gap:18px;min-height:78px}
.ag-about-years a{display:flex;align-items:baseline;gap:7px;color:#315743;text-decoration:none}
.ag-about-years strong{font-family:"Baloo 2",sans-serif;font-size:18px}
.ag-about-years span{color:#7b8c82;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.05em}
.ag-about-years i{width:55px;height:1px;background:#dfe9e1}

.ag-about-story{padding:100px 0}
.ag-about-story-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center}
.ag-about-story h2,.ag-about-wide-heading h2,.ag-about-unesco h2,.ag-about-split-heading h2,
.ag-about-yard h2,.ag-about-community h2,.ag-about-evolution h2{
  margin:8px 0 18px;font-size:clamp(38px,4vw,55px);line-height:1.02
}
.ag-about-story-copy>p,.ag-about-unesco-copy>p,.ag-about-agricola p,.ag-about-yard-copy>p,
.ag-about-community p,.ag-about-evolution-copy>p,.ag-about-today-prose p{
  margin:0 0 14px;font-size:14.5px;line-height:1.75
}
.ag-about-lead{color:#526d5d!important;font-size:16.5px!important}
.ag-about-quote{margin:26px 0 0;padding:18px 20px;border-left:4px solid #e9cd65;border-radius:0 16px 16px 0;background:#fff9e5}
.ag-about-quote p{margin:0 0 5px!important;color:#315743!important;font-family:"Baloo 2",sans-serif;font-size:19px!important;line-height:1.35!important}
.ag-about-quote cite{color:#7b8c82;font-size:10px;font-style:normal;font-weight:800;text-transform:uppercase;letter-spacing:.06em}

.ag-about-gallery{display:grid;gap:10px}
.ag-about-gallery-item{display:block;overflow:hidden;border-radius:20px;background:#edf5ee;box-shadow:0 10px 28px rgba(47,90,67,.055)}
.ag-about-gallery-item img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .35s ease}
.ag-about-gallery-item:hover img{transform:scale(1.035)}


/* Sloturile ACF raman fixe chiar daca unele imagini nu sunt completate. */
.ag-about-gallery-placeholder{
  min-width:0;
  min-height:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:18px;
  border:1px dashed #cfe1d3;
  background:#f5faf6;
  color:#789083;
  text-align:center;
  box-shadow:none;
}
.ag-about-gallery-placeholder span{font-size:30px;line-height:1;opacity:.72}
.ag-about-gallery-placeholder strong{
  max-width:150px;
  font-family:"Baloo 2",sans-serif;
  font-size:12px;
  line-height:1.25;
  font-weight:700;
  color:#789083;
}
.ag-about-gallery-placeholder:hover{transform:none}

.ag-about-gallery-history{grid-template-columns:1.25fr .75fr;grid-auto-rows:190px}
.ag-about-gallery-history .ag-about-gallery-item:first-child{grid-row:span 2}
.ag-about-empty-gallery{
  min-height:330px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  border:1px dashed #cfe1d3;border-radius:30px;background:#f5faf6;text-align:center
}
.ag-about-empty-gallery span{font-size:46px}.ag-about-empty-gallery strong{margin-top:10px;font-family:"Baloo 2",sans-serif;font-size:18px}
.ag-about-empty-gallery small{margin-top:3px;color:#839188;font-size:11px}

.ag-about-then-now{padding:78px 0;background:#f7fbf7}
.ag-about-wide-heading{max-width:850px;margin:0 auto 32px;text-align:center}
.ag-about-prose-columns{max-width:1000px;margin:auto;display:grid;grid-template-columns:1fr 1fr;gap:50px}
.ag-about-prose-columns p{margin:0;font-size:15px;line-height:1.78}

.ag-about-unesco{padding:100px 0;background:#fffaf0}
.ag-about-unesco-grid{display:grid;grid-template-columns:.45fr 1.55fr;gap:60px;align-items:center;max-width:1050px}
.ag-about-unesco-number{
  min-height:230px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  border-radius:35px;background:#315743;color:#fff
}
.ag-about-unesco-number strong{font-family:"Baloo 2",sans-serif;font-size:57px;line-height:1;color:#f0d46a}
.ag-about-unesco-number span{margin-top:8px;font-size:10px;font-weight:900;letter-spacing:.15em}
.ag-about-unesco-gallery{margin-top:45px}
.ag-about-gallery-documents{grid-template-columns:repeat(4,1fr);grid-auto-rows:220px}

.ag-about-agricola{padding:100px 0}
.ag-about-split-heading{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:start;margin-bottom:45px}
.ag-about-split-heading h2{margin-bottom:0}
.ag-about-gallery-film{grid-template-columns:repeat(4,1fr);grid-auto-rows:230px}
.ag-about-gallery-film .ag-about-gallery-item:nth-child(1){grid-column:span 2}
.ag-about-value-line{
  max-width:900px;margin:42px auto 0;display:grid;grid-template-columns:55px 1fr;gap:18px;align-items:center;
  padding:22px 25px;border-radius:22px;background:#edf8ef
}
.ag-about-value-line span{font-size:35px}.ag-about-value-line p{margin:0!important}

.ag-about-palace{padding:100px 0;background:#315743}
.ag-about-palace-title{max-width:800px;margin:0 auto 42px;text-align:center}
.ag-about-palace-title .ag-section-kicker{color:#bce2c2}
.ag-about-palace-title h2{margin:6px 0 8px;color:#fff;font-size:clamp(44px,5vw,66px);line-height:1}
.ag-about-palace-title p{margin:0;color:rgba(255,255,255,.68);font-size:15px;line-height:1.6}
.ag-about-gallery-spaces{grid-template-columns:repeat(4,1fr);grid-auto-rows:190px}
.ag-about-gallery-spaces .ag-about-gallery-item:first-child{grid-column:span 2;grid-row:span 2}
.ag-about-palace .ag-about-empty-gallery{border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.06);color:#fff}
.ag-about-palace .ag-about-empty-gallery small{color:rgba(255,255,255,.55)}
.ag-about-palace .ag-about-gallery-placeholder{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.7);
}
.ag-about-palace .ag-about-gallery-placeholder strong{color:rgba(255,255,255,.72)}
.ag-about-palace-text{display:grid;grid-template-columns:1fr 1fr;gap:55px;margin-top:42px}
.ag-about-palace-text h3{margin:0 0 9px;color:#fff;font-size:22px;line-height:1.15}
.ag-about-palace-text p{margin:0;color:rgba(255,255,255,.67);font-size:13.5px;line-height:1.7}

.ag-about-yard{padding:100px 0;background:#f4fbf3}
.ag-about-yard-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:65px;align-items:center}
.ag-about-gallery-yard{grid-template-columns:1fr 1fr;grid-auto-rows:180px}
.ag-about-gallery-yard .ag-about-gallery-item:first-child{grid-column:span 2}

.ag-about-community{padding:100px 0}
.ag-about-community-intro{max-width:760px}
.ag-about-community-statement{
  max-width:920px;margin:35px 0 45px auto;padding:25px 30px;border-radius:25px;background:#fff7dc
}
.ag-about-community-statement p{margin:0!important;color:#4f6959!important;font-size:17px!important;line-height:1.65!important}
.ag-about-gallery-community{grid-template-columns:repeat(4,1fr);grid-auto-rows:210px}
.ag-about-community-copy{display:grid;grid-template-columns:1fr 1fr;gap:50px;margin-top:40px}

.ag-about-evolution{padding:100px 0;background:#f7fbfc}
.ag-about-evolution-grid{display:grid;grid-template-columns:1fr 1fr;gap:65px;align-items:center}
.ag-about-gallery-activities{grid-template-columns:1fr 1fr;grid-auto-rows:175px}
.ag-about-gallery-activities .ag-about-gallery-item:first-child{grid-row:span 2}

.ag-about-today{padding:105px 0}
.ag-about-today-heading{max-width:800px;margin:0 auto 40px;text-align:center}
.ag-about-today-heading h2{margin:5px 0 8px;font-size:clamp(50px,6vw,78px);line-height:.95}
.ag-about-gallery-today{grid-template-columns:repeat(4,1fr);grid-auto-rows:220px}
.ag-about-gallery-today .ag-about-gallery-item:first-child{grid-column:span 2}
.ag-about-today-prose{max-width:960px;margin:42px auto 0;display:grid;grid-template-columns:1fr 1fr;gap:50px}
.ag-about-finale{
  margin:55px auto 0;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:14px;
  color:#315743;font-family:"Baloo 2",sans-serif;font-size:clamp(30px,4vw,52px);font-weight:900
}
.ag-about-finale i{color:#d4b84d;font-style:normal}.ag-about-finale strong{color:#62b86e}.ag-about-finale b{font-size:.9em}

.ag-about-cta{padding:0 0 90px}
.ag-about-cta-inner{
  display:flex;align-items:center;justify-content:space-between;gap:35px;padding:38px 44px;
  border-radius:30px;background:#eaf8ed
}
.ag-about-cta h2{max-width:700px;margin:6px 0 0;font-size:34px;line-height:1.08}
.ag-about-cta-actions{display:flex;flex-wrap:wrap;gap:9px;flex-shrink:0}

@media(max-width:900px){
  .ag-about-hero-grid,.ag-about-story-grid,.ag-about-unesco-grid,.ag-about-split-heading,
  .ag-about-yard-grid,.ag-about-evolution-grid{grid-template-columns:1fr}
  .ag-about-hero-mark{min-height:290px}
  .ag-about-years .ag-container{overflow-x:auto;justify-content:flex-start}
  .ag-about-prose-columns,.ag-about-palace-text,.ag-about-community-copy,.ag-about-today-prose{grid-template-columns:1fr;gap:18px}
  .ag-about-gallery-documents,.ag-about-gallery-film,.ag-about-gallery-spaces,
  .ag-about-gallery-community,.ag-about-gallery-today{grid-template-columns:repeat(2,1fr)}
  .ag-about-gallery-film .ag-about-gallery-item:nth-child(1){grid-column:auto}
  .ag-about-unesco-number{min-height:170px}
  .ag-about-cta-inner{align-items:flex-start;flex-direction:column}
}
@media(max-width:620px){
  .ag-about-hero{padding:62px 0 55px}
  .ag-about-hero-copy>p{font-size:14.5px}
  .ag-about-hero-facts{gap:18px}
  .ag-about-hero-mark{min-height:245px;border-radius:30px}
  .ag-about-hero-year{font-size:68px}.ag-about-hero-chick{font-size:49px}
  .ag-about-years i{width:25px}
  .ag-about-years span{display:none}
  .ag-about-story,.ag-about-unesco,.ag-about-agricola,.ag-about-palace,.ag-about-yard,
  .ag-about-community,.ag-about-evolution,.ag-about-today{padding:70px 0}
  .ag-about-then-now{padding:60px 0}
  .ag-about-gallery-history,.ag-about-gallery-documents,.ag-about-gallery-film,
  .ag-about-gallery-spaces,.ag-about-gallery-yard,.ag-about-gallery-community,
  .ag-about-gallery-activities,.ag-about-gallery-today{
    grid-template-columns:1fr;grid-auto-rows:220px
  }
  .ag-about-gallery-history .ag-about-gallery-item:first-child,
  .ag-about-gallery-spaces .ag-about-gallery-item:first-child,
  .ag-about-gallery-yard .ag-about-gallery-item:first-child,
  .ag-about-gallery-activities .ag-about-gallery-item:first-child,
  .ag-about-gallery-today .ag-about-gallery-item:first-child{
    grid-column:auto;grid-row:auto
  }
  .ag-about-empty-gallery{min-height:230px}
  .ag-about-community-statement{margin-top:25px;padding:20px}
  .ag-about-value-line{grid-template-columns:1fr;text-align:center}
  .ag-about-cta{padding-bottom:65px}
  .ag-about-cta-inner{padding:29px 23px}
  .ag-about-cta h2{font-size:28px}
}


/* =========================================================
   404 - PUFI PAZNICUL GRADINITEI
   ========================================================= */
.ag-404{overflow:hidden;background:#f7fcf5}
.ag-404-scene{position:relative;min-height:calc(100vh - 80px);padding:48px 0 72px;background:linear-gradient(180deg,#eaf8f0 0%,#f9f8df 68%,#dff2c9 68%,#dff2c9 100%)}
.ag-404-scene>.ag-container{position:relative;z-index:2}
.ag-404-stage{position:relative;max-width:920px;height:420px;margin:0 auto}
.ag-404-sun{position:absolute;right:72px;top:10px;width:74px;height:74px;border-radius:50%;background:#f5d768;box-shadow:0 0 0 14px rgba(245,215,104,.16)}
.ag-404-cloud{position:absolute;width:112px;height:28px;border-radius:30px;background:rgba(255,255,255,.88);animation:ag404Cloud 15s ease-in-out infinite alternate}
.ag-404-cloud:before,.ag-404-cloud:after{content:"";position:absolute;bottom:0;border-radius:50%;background:inherit}
.ag-404-cloud:before{left:19px;width:45px;height:45px}.ag-404-cloud:after{right:18px;width:57px;height:57px}
.ag-404-cloud-1{top:95px;left:7%}.ag-404-cloud-2{top:155px;right:5%;transform:scale(.72);animation-delay:-5s}
@keyframes ag404Cloud{to{transform:translateX(32px)}}

.ag-404-school{position:absolute;left:50%;bottom:89px;width:365px;height:190px;transform:translateX(-50%)}
.ag-404-school-body{position:absolute;bottom:0;width:100%;height:145px;border-radius:20px 20px 8px 8px;background:#fff7d7;border:5px solid #fff;box-shadow:0 14px 32px rgba(49,87,67,.1)}
.ag-404-school-roof{position:absolute;z-index:2;left:28px;top:3px;width:310px;height:95px;background:#66bd73;clip-path:polygon(50% 0,100% 65%,91% 65%,91% 100%,9% 100%,9% 65%,0 65%);border-radius:16px}
.ag-404-school-sign{position:absolute;z-index:5;left:50%;top:68px;transform:translateX(-50%);white-space:nowrap;padding:7px 14px;border-radius:10px;background:#fff;color:#315743;font:900 10px/1 "Baloo 2",sans-serif;letter-spacing:.08em;box-shadow:0 5px 12px rgba(49,87,67,.08)}
.ag-404-window{position:absolute;top:47px;width:62px;height:55px;border:7px solid #fff;border-radius:14px;background:#aee0e9;box-shadow:inset 0 0 0 2px rgba(49,87,67,.06)}
.ag-404-window:after{content:"";position:absolute;left:50%;top:0;width:4px;height:100%;background:#fff}
.ag-404-window-1{left:42px}.ag-404-window-2{right:42px}
.ag-404-door{position:absolute;left:50%;bottom:0;width:67px;height:86px;transform:translateX(-50%);border-radius:18px 18px 0 0;background:#f3a75a;border:7px solid #fff;border-bottom:0}

.ag-404-fence{position:absolute;bottom:56px;display:flex;gap:6px;height:72px}
.ag-404-fence:after{content:"";position:absolute;left:-7px;right:-7px;top:37px;height:9px;border-radius:8px;background:#fff}
.ag-404-fence i{position:relative;width:26px;height:72px;background:#fff;border-radius:5px}
.ag-404-fence i:before{content:"";position:absolute;left:0;top:-12px;border-left:13px solid transparent;border-right:13px solid transparent;border-bottom:14px solid #fff}
.ag-404-fence-left{left:70px}.ag-404-fence-right{right:70px}

.ag-404-sign{position:absolute;z-index:10;left:50%;bottom:135px;width:118px;height:72px;transform:translateX(-50%) rotate(-2deg);transform-origin:50% -35px;border:5px solid #fff;border-radius:14px;background:#f1cc58;box-shadow:0 8px 18px rgba(49,87,67,.12);animation:ag404Sign 3.4s ease-in-out infinite}
.ag-404-sign strong{display:flex;width:100%;height:100%;align-items:center;justify-content:center;color:#315743;font:900 39px/1 "Baloo 2",sans-serif}
.ag-404-rope{position:absolute;left:50%;top:-43px;width:2px;height:43px;background:#8b7653}
@keyframes ag404Sign{50%{transform:translateX(-50%) rotate(2deg)}}

.ag-404-dog{position:absolute;z-index:15;left:50%;bottom:12px;width:145px;height:153px;transform:translateX(-50%)}
.ag-404-dog-body{position:absolute;left:31px;bottom:3px;width:87px;height:88px;border-radius:50% 50% 38% 38%;background:#c8874d}
.ag-404-dog-head{position:absolute;left:22px;top:0;width:105px;height:99px;border-radius:48% 48% 44% 44%;background:#d99b5d;animation:ag404Head 5s ease-in-out infinite}
.ag-404-ear{position:absolute;z-index:-1;top:10px;width:43px;height:69px;border-radius:65% 45% 60% 55%;background:#8b5b3a}
.ag-404-ear-left{left:-18px;transform:rotate(20deg);animation:ag404EarL 4s ease-in-out infinite}.ag-404-ear-right{right:-18px;transform:rotate(-20deg);animation:ag404EarR 4s ease-in-out infinite}
.ag-404-dog-eye{position:absolute;top:35px;width:9px;height:11px;border-radius:50%;background:#372f2a;transform-origin:center;animation:ag404Blink 4.7s infinite}
.ag-404-dog-eye.eye-left{left:28px}.ag-404-dog-eye.eye-right{right:28px}
.ag-404-muzzle{position:absolute;left:50%;top:48px;width:48px;height:38px;transform:translateX(-50%);border-radius:50%;background:#f3d1a7}
.ag-404-nose{position:absolute;z-index:3;left:50%;top:48px;width:17px;height:13px;transform:translateX(-50%);border-radius:55% 55% 70% 70%;background:#3d342e}
.ag-404-collar{position:absolute;left:15px;right:15px;bottom:3px;height:10px;border-radius:8px;background:#5dbd6d}
.ag-404-tag{position:absolute;left:50%;bottom:-15px;width:24px;height:24px;display:flex;align-items:center;justify-content:center;transform:translateX(-50%);border-radius:50%;background:#f2d15f;color:#315743;font:900 11px "Baloo 2",sans-serif}
.ag-404-paw{position:absolute;bottom:-8px;width:29px;height:36px;border-radius:45% 45% 35% 35%;background:#d99b5d}.ag-404-paw.p1{left:12px}.ag-404-paw.p2{right:12px}
.ag-404-tail{position:absolute;z-index:-1;right:4px;bottom:38px;width:57px;height:24px;border-radius:80% 70% 70% 20%;background:#c8874d;transform-origin:0 50%;animation:ag404Tail .55s ease-in-out infinite alternate}
@keyframes ag404Tail{from{transform:rotate(-20deg)}to{transform:rotate(24deg)}}
@keyframes ag404Blink{0%,44%,48%,100%{transform:scaleY(1)}46%{transform:scaleY(.08)}}
@keyframes ag404Head{0%,85%,100%{transform:rotate(0)}90%{transform:rotate(4deg)}95%{transform:rotate(-3deg)}}
@keyframes ag404EarL{0%,88%,100%{transform:rotate(20deg)}93%{transform:rotate(30deg)}}@keyframes ag404EarR{0%,88%,100%{transform:rotate(-20deg)}93%{transform:rotate(-30deg)}}

.ag-404-chick{position:absolute;z-index:7;bottom:110px;width:48px;height:55px;border-radius:48% 48% 43% 43%;background:#ffd052;animation:ag404Peek 4.8s ease-in-out infinite}
.ag-404-chick-1{left:22%;animation-delay:-1s}.ag-404-chick-2{right:22%;animation-delay:-3s}
.ag-404-chick-eye{position:absolute;top:22px;width:5px;height:6px;border-radius:50%;background:#5b3b25}.ag-404-chick-eye.e1{left:13px}.ag-404-chick-eye.e2{right:13px}
.ag-404-chick-beak{position:absolute;left:50%;top:29px;transform:translateX(-50%);border-left:6px solid transparent;border-right:6px solid transparent;border-top:8px solid #ef8c2e}
.ag-404-chick-tuft:before,.ag-404-chick-tuft:after{content:"";position:absolute;top:-8px;width:15px;height:8px;border-radius:100% 0;background:#ffd052}.ag-404-chick-tuft:before{left:13px;transform:rotate(25deg)}.ag-404-chick-tuft:after{right:12px;transform:scaleX(-1) rotate(25deg)}
@keyframes ag404Peek{0%,65%,100%{transform:translateY(18px)}72%,92%{transform:translateY(0)}}

.ag-404-flower{position:absolute;bottom:35px;color:#fff;font-size:26px;animation:ag404Flower 2.5s ease-in-out infinite alternate}.ag-404-flower.f1{left:14%}.ag-404-flower.f2{left:24%;color:#f0cc5b;animation-delay:-1s}.ag-404-flower.f3{right:15%;color:#fff;animation-delay:-.4s}
.ag-404-grass{position:absolute;bottom:31px;width:50px;height:25px;border-top:5px solid #73b866;border-radius:50%}.ag-404-grass.g1{left:31%}.ag-404-grass.g2{right:30%}
@keyframes ag404Flower{to{transform:rotate(8deg)}}

.ag-404-copy{max-width:780px;margin:8px auto 0;text-align:center}
.ag-404-kicker{display:inline-block;margin-bottom:8px;color:#5c9f68;font-size:10px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.ag-404-copy h1{margin:0;color:#315743;font-family:"Baloo 2",sans-serif;font-size:clamp(40px,5vw,61px);line-height:1;letter-spacing:-.02em}
.ag-404-copy h1 span{color:#62bd70}
.ag-404-copy p{max-width:650px;margin:15px auto 20px;color:#6e8176;font-size:15px;line-height:1.65}
.ag-404-actions{display:flex;justify-content:center;flex-wrap:wrap;gap:10px}
.ag-404-copy small{display:block;margin-top:17px;color:#96a399;font-size:10px}
@media(max-width:700px){
 .ag-404-scene{padding-top:30px}.ag-404-stage{height:355px;transform:scale(.88);transform-origin:top center;margin-bottom:-38px}
 .ag-404-school{width:320px}.ag-404-school-roof{left:24px;width:272px}
 .ag-404-fence-left{left:5px}.ag-404-fence-right{right:5px}
 .ag-404-chick-1{left:13%}.ag-404-chick-2{right:13%}
}
@media(prefers-reduced-motion:reduce){
 .ag-404 *{animation:none!important}
}
/* =========================================================
   ACTIVITATI - IMAGINE REPREZENTATIVA CARD
   ========================================================= */

.ag-activities-archive .ag-card{
    overflow:hidden;
    padding:0 !important;

    display:flex;
    flex-direction:column;

    background:#fff;
    border-radius:26px;

    box-shadow:
        0 15px 40px rgba(47,90,67,.07);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


/* HOVER CARD */

.ag-activities-archive .ag-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 22px 50px rgba(47,90,67,.12);
}


/* =========================================================
   IMAGINE
   ========================================================= */

.ag-activities-archive .ag-card-image{
    position:relative;

    display:block;

    width:100%;
    height:205px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #eef9ef,
            #fff7d9
        );

    text-decoration:none;
}


/* imagine WordPress */

.ag-activities-archive .ag-card-image img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);
}


/* zoom foarte subtil */

.ag-activities-archive .ag-card:hover .ag-card-image img{
    transform:scale(1.045);
}


/* mic gradient peste partea de jos */

.ag-activities-archive .ag-card-image::after{
    content:"";

    position:absolute;
    left:0;
    right:0;
    bottom:0;

    height:50px;

    background:
        linear-gradient(
            to top,
            rgba(34,76,54,.08),
            transparent
        );

    pointer-events:none;
}


/* =========================================================
   PLACEHOLDER - DACA NU EXISTA POZA
   ========================================================= */

.ag-card-image-placeholder{
    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:5px;

    background:
        radial-gradient(
            circle at 50% 115%,
            rgba(98,198,111,.18),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #f1faef,
            #fff8dc
        );
}


.ag-card-placeholder-chick{
    display:block;

    font-size:58px;
    line-height:1;

    transform-origin:center bottom;

    transition:transform .25s ease;
}


.ag-card-image-placeholder small{
    margin-top:5px;

    color:#6f8977;

    font-size:9px;
    font-weight:900;

    text-transform:uppercase;
    letter-spacing:.09em;
}


.ag-card:hover .ag-card-placeholder-chick{
    transform:
        translateY(-3px)
        rotate(-4deg);
}


/* =========================================================
   CONTINUT CARD
   ========================================================= */

.ag-activities-archive .ag-card-body{
    flex:1;

    display:flex;
    flex-direction:column;

    padding:22px 24px 24px;
}


.ag-activities-archive .ag-card-date{
    margin-bottom:10px;

    color:#58a966;

    font-size:10px;
    font-weight:900;

    text-transform:uppercase;
    letter-spacing:.045em;
}


.ag-activities-archive .ag-card h2{
    margin:0 0 12px;

    font-size:23px;
    line-height:1.16;
}


.ag-activities-archive .ag-card h2 a{
    color:#315743;
    text-decoration:none;

    transition:color .2s ease;
}


.ag-activities-archive .ag-card h2 a:hover{
    color:#62bd70;
}


.ag-activities-archive .ag-card-body > p{
    margin:0 0 18px;

    color:#708379;

    font-size:13.5px;
    line-height:1.65;
}


/* împinge butonul jos chiar dacă textele au lungimi diferite */

.ag-activities-archive .ag-read{
    margin-top:auto;

    color:#388c4c;

    font-size:12px;
    font-weight:900;

    text-decoration:none;
}


/* =========================================================
   GRID
   ========================================================= */

.ag-activities-archive .ag-cards{
    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:26px;
}


/* =========================================================
   TABLETA
   ========================================================= */

@media(max-width:950px){

    .ag-activities-archive .ag-cards{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media(max-width:620px){

    .ag-activities-archive .ag-cards{
        grid-template-columns:1fr;

        gap:18px;
    }

    .ag-activities-archive .ag-card-image{
        height:215px;
    }

    .ag-activities-archive .ag-card-body{
        padding:20px;
    }

}
/* =========================================================
   ECHIPA - MOTTO EDUCATORE
   ========================================================= */

.ag-team-card .ag-team-motto {
    margin: 14px 0 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;

    line-height: 1.6;
    color: #718277;

    opacity: .92;
}

.ag-team-card .ag-team-motto::before {
    content: "“";
    margin-right: 3px;

    color: #76b97d;
    font-size: 18px;
    font-weight: 400;
}

.ag-team-card .ag-team-motto::after {
    content: "”";
    margin-left: 2px;

    color: #76b97d;
    font-size: 18px;
    font-weight: 400;
}

/* =========================================================
   LOGO AGRICOLA - DIMENSIUNI FINALE
   ========================================================= */

.ag-brand{
    display:inline-flex;
    align-items:center;
    gap:6px;
    flex-shrink:0;
    text-decoration:none !important;
    white-space:nowrap;
}

/* Ouă */
.ag-brand-eggs{
    display:block;
    width:43px;
    height:auto;
    flex:0 0 auto;
    overflow:visible;
}

/* Grup text */
.ag-brand-copy{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    line-height:1;
}

/* GRĂDINIȚA AGRICOLA */
.ag-brand-copy strong{
    margin:0;
    padding:0;

    font-family:"Nunito", Arial, sans-serif;
    font-size:16px;
    font-weight:900;
    line-height:1;

    letter-spacing:-0.3px;
    color:#16813d;
}

/* neam de gospodari */
.ag-brand-copy small{
    margin-top:3px;
    padding:0;

    font-family:"Nunito", Arial, sans-serif;
    font-size:8.5px;
    font-weight:600;
    line-height:1;

    letter-spacing:.05px;
    color:#558268;
}


/* TABLETA / MOBIL */
@media(max-width:700px){

    .ag-brand{
        gap:5px;
    }

    .ag-brand-eggs{
        width:38px;
    }

    .ag-brand-copy strong{
        font-size:14px;
        letter-spacing:-.2px;
    }

    .ag-brand-copy small{
        margin-top:3px;
        font-size:10px;
        font-weight:600;
        line-height:1.1;
        letter-spacing:0;
    }
}


/* TELEFOANE MICI */
@media(max-width:390px){

    .ag-brand-eggs{
        width:34px;
    }

    .ag-brand-copy strong{
        font-size:12.5px;
    }

    .ag-brand-copy small{
        font-size:9px;
    }
}
/* =========================================================
   FOOTER LOGO - IDENTIC CU HEADERUL
   ========================================================= */

.ag-site-footer .ag-footer-brand-logo{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:flex-start !important;

    gap:7px !important;
    width:auto !important;
    max-width:none !important;

    text-decoration:none !important;
    white-space:nowrap !important;
}


/* OUA */

.ag-site-footer .ag-footer-brand-eggs{
    display:block !important;

    width:43px !important;
    height:auto !important;

    min-width:43px !important;
    max-width:43px !important;

    flex:0 0 43px !important;
    overflow:visible !important;
}


/* CONTAINER TEXT */

.ag-site-footer .ag-footer-brand-copy{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:center !important;

    width:auto !important;
    max-width:none !important;
    min-width:max-content !important;

    line-height:1 !important;
}


/* GRADINITA AGRICOLA */

.ag-site-footer .ag-footer-brand-copy strong{
    display:block !important;

    width:auto !important;
    max-width:none !important;

    margin:0 !important;
    padding:0 !important;

    white-space:nowrap !important;

    font-family:"Nunito", Arial, sans-serif !important;
    font-size:16px !important;
    font-weight:900 !important;
    line-height:1 !important;

    letter-spacing:-.3px !important;

    color:#ffffff !important;
}


/* NEAM DE GOSPODARI */

.ag-site-footer .ag-footer-brand-copy small{
    display:block !important;

    width:auto !important;
    max-width:none !important;

    margin:3px 0 0 !important;
    padding:0 !important;

    white-space:nowrap !important;

    font-family:"Nunito", Arial, sans-serif !important;
    font-size:10px !important;
    font-weight:600 !important;
    line-height:1.1 !important;

    letter-spacing:0 !important;

    color:rgba(255,255,255,.72) !important;
}


/* =========================================================
   MOBIL
   ========================================================= */

@media(max-width:700px){

    .ag-site-footer .ag-footer-brand-logo{
        gap:6px !important;
    }

    .ag-site-footer .ag-footer-brand-eggs{
        width:40px !important;
        min-width:40px !important;
        max-width:40px !important;
        flex-basis:40px !important;
    }

    .ag-site-footer .ag-footer-brand-copy strong{
        font-size:15px !important;
    }

    .ag-site-footer .ag-footer-brand-copy small{
        font-size:10px !important;
        margin-top:3px !important;
    }
}

/* =========================================================
   SINGLE EVENIMENT
========================================================= */

.ag-single-event{
    background:#fff;
}


/* META HERO */

.ag-event-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:0;
    margin-top:14px;

    color:#587064;
    font-size:14px;
    font-weight:600;
}

.ag-event-meta span{
    display:flex;
    align-items:center;
}

.ag-event-meta span + span::before{
    content:"•";
    margin:0 10px;
    color:#7ba98b;
}


/* =========================================================
   50 / 50
========================================================= */

.ag-event-main{
    padding:70px 0 90px;
}

.ag-event-split{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);

    align-items:stretch;

    max-width:1180px;
    margin:0 auto;

    background:#fff;

    border:1px solid rgba(35,91,63,.08);
    border-radius:30px;

    overflow:hidden;

    box-shadow:
        0 22px 60px rgba(35,91,63,.09);
}


/* =========================================================
   IMAGINE
========================================================= */

.ag-event-image{
    position:relative;

    min-height:520px;

    background:#f3f8f4;
    overflow:hidden;
}

.ag-event-image img{
    display:block;

    width:100%;
    height:100%;

    min-height:520px;

    object-fit:cover;
    object-position:center;

    transition:transform .6s ease;
}

.ag-event-split:hover .ag-event-image img{
    transform:scale(1.015);
}


/* Placeholder dacă nu există imagine */

.ag-event-image-placeholder{
    width:100%;
    height:100%;
    min-height:520px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255,215,74,.18),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #f2faf4,
            #e9f5ec
        );
}

.ag-event-image-placeholder span{
    font-size:70px;
}


/* =========================================================
   CONTINUT
========================================================= */

.ag-event-content{
    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:55px 58px;
}

.ag-event-content-kicker{
    display:block;

    margin-bottom:20px;

    color:#3f965c;

    font-size:12px;
    font-weight:800;

    text-transform:uppercase;
    letter-spacing:.08em;
}

.ag-event-content-text{
    color:#52665b;

    font-size:16px;
    line-height:1.8;
}

.ag-event-content-text > *:first-child{
    margin-top:0;
}

.ag-event-content-text > *:last-child{
    margin-bottom:0;
}

.ag-event-content-text p{
    margin:0 0 18px;
}

.ag-event-content-text strong{
    color:#315b46;
}

.ag-event-content-text h2,
.ag-event-content-text h3{
    color:#28573f;

    line-height:1.25;
}

.ag-event-content-text h2{
    margin:30px 0 15px;

    font-size:28px;
}

.ag-event-content-text h3{
    margin:26px 0 12px;

    font-size:21px;
}


/* Linkuri */

.ag-event-content-text a{
    color:#27894b;
    font-weight:700;

    text-decoration-thickness:1px;
    text-underline-offset:3px;
}


/* Liste */

.ag-event-content-text ul,
.ag-event-content-text ol{
    margin:18px 0;
    padding-left:22px;
}

.ag-event-content-text li{
    margin-bottom:8px;
}


/* Imagini introduse accidental în editor */

.ag-event-content-text img{
    max-width:100%;
    height:auto;

    border-radius:18px;
}


/* =========================================================
   TABLETĂ
========================================================= */

@media (max-width:1000px){

    .ag-event-main{
        padding:50px 0 70px;
    }

    .ag-event-content{
        padding:42px 38px;
    }

    .ag-event-image,
    .ag-event-image img,
    .ag-event-image-placeholder{
        min-height:450px;
    }

}


/* =========================================================
   MOBIL
========================================================= */

@media (max-width:760px){

    .ag-event-main{
        padding:30px 0 55px;
    }

    .ag-event-split{
        grid-template-columns:1fr;

        border-radius:22px;
    }

    .ag-event-image{
        min-height:0;
        aspect-ratio:16 / 10;
    }

    .ag-event-image img{
        min-height:0;
        height:100%;
    }

    .ag-event-image-placeholder{
        min-height:0;
        height:100%;
    }

    .ag-event-content{
        padding:30px 24px 34px;
    }

    .ag-event-content-text{
        font-size:15px;
        line-height:1.72;
    }

    .ag-event-content-kicker{
        margin-bottom:16px;
    }

    .ag-event-meta{
        font-size:12px;
        line-height:1.6;
    }

    .ag-event-meta span + span::before{
        margin:0 7px;
    }

}


/* =========================================================
   TELEFOANE MICI
========================================================= */

@media (max-width:480px){

    .ag-event-split{
        border-radius:18px;
    }

    .ag-event-image{
        aspect-ratio:4 / 3;
    }

    .ag-event-content{
        padding:26px 20px 30px;
    }

}
/* =========================================================
   LOGO OFICIAL - HEADER
========================================================= */

.ag-brand{
    display:flex;
    align-items:center;
    flex-shrink:0;
    text-decoration:none;
}

.ag-brand-official-logo{
    display:block;
    width:auto;
    height:46px;
    max-width:245px;
    object-fit:contain;
    object-position:left center;
}


/* LAPTOP / TABLETA MARE */

@media (max-width:1200px){

    .ag-brand-official-logo{
        height:42px;
        max-width:225px;
    }

}


/* TABLETA */

@media (max-width:900px){

    .ag-brand-official-logo{
        height:48px;
        max-width:240px;
    }

}


/* MOBIL */

@media (max-width:700px){

    .ag-brand-official-logo{
        height:46px;
        max-width:225px;
    }

}


/* TELEFOANE MICI */

@media (max-width:390px){

    .ag-brand-official-logo{
        height:42px;
        max-width:200px;
    }

}

/* =========================================================
   LOGO OFICIAL - FOOTER
========================================================= */

.ag-footer-brand-logo{
    display:inline-flex;
    align-items:center;
    width:auto;
    max-width:100%;
    margin-bottom:26px;
    text-decoration:none;
}

.ag-footer-official-logo{
    display:block;

    width:auto;
    height:76px;
    max-width:340px;

    object-fit:contain;
    object-position:left center;
}


/* TABLETA */

@media (max-width:900px){

    .ag-footer-official-logo{
        height:68px;
        max-width:310px;
    }

}


/* MOBIL */

@media (max-width:700px){

    .ag-footer-brand-logo{
        margin-bottom:22px;
    }

    .ag-footer-official-logo{
        height:62px;
        max-width:285px;
    }

}


/* TELEFOANE MICI */

@media (max-width:390px){

    .ag-footer-official-logo{
        height:56px;
        max-width:250px;
    }

}

/* =========================================================
   DESPRE NOI - O SINGURA IMAGINE PE SECTIUNE
   Camp folosit: ag_about_{sectiune}_1
========================================================= */
.ag-about-page .ag-about-single-image{
  display:block;
  width:100%;
}

.ag-about-page .ag-about-single-image .ag-about-gallery-item{
  display:flex;
  width:100%;
  min-height:0;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:26px;
}

.ag-about-page .ag-about-single-image .ag-about-gallery-item img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* Dimensiunea vizuala a fiecarui fost placeholder */
.ag-about-page .ag-about-gallery-history .ag-about-gallery-item{height:390px}
.ag-about-page .ag-about-gallery-documents .ag-about-gallery-item{height:300px}
.ag-about-page .ag-about-gallery-film .ag-about-gallery-item{height:360px}
.ag-about-page .ag-about-gallery-spaces .ag-about-gallery-item{height:390px}
.ag-about-page .ag-about-gallery-yard .ag-about-gallery-item{height:360px}
.ag-about-page .ag-about-gallery-community .ag-about-gallery-item{height:330px}
.ag-about-page .ag-about-gallery-activities .ag-about-gallery-item{height:360px}
.ag-about-page .ag-about-gallery-today .ag-about-gallery-item{height:360px}

/* Placeholder-ul ocupa exact acelasi spatiu ca fotografia */
.ag-about-page .ag-about-single-image .ag-about-gallery-placeholder{
  flex-direction:column;
  gap:9px;
  padding:24px;
  border:1px dashed #cfe1d3;
  background:#f5faf6;
  color:#789083;
  text-align:center;
  box-shadow:none;
}

.ag-about-page .ag-about-single-image .ag-about-gallery-placeholder strong{
  max-width:210px;
}

.ag-about-page .ag-about-palace .ag-about-single-image .ag-about-gallery-placeholder{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.72);
}

/* Fotografia istorica trebuie vazuta integral, fara taierea persoanelor. */
.ag-about-page .ag-about-gallery-history .ag-about-gallery-item img{
  object-fit:contain;
  background:#f5faf6;
}

@media(max-width:900px){
  .ag-about-page .ag-about-gallery-history .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-documents .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-film .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-spaces .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-yard .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-community .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-activities .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-today .ag-about-gallery-item{
    height:340px;
  }
}

@media(max-width:620px){
  .ag-about-page .ag-about-gallery-history .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-documents .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-film .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-spaces .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-yard .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-community .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-activities .ag-about-gallery-item,
  .ag-about-page .ag-about-gallery-today .ag-about-gallery-item{
    height:260px;
    border-radius:20px;
  }
}

/* =========================================================
   HOME - GRUPE + VOCILE PUISORILOR (override final)
   ========================================================= */
.ag-groups-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:20px !important;
}
.ag-group-age{
  display:inline-block !important;
  margin:0 0 12px !important;
  padding:5px 11px !important;
  border-radius:999px !important;
  background:#edf9ef !important;
  color:#4b9560 !important;
  font-size:12px !important;
  font-weight:900 !important;
}
.ag-voice-card p{margin-bottom:14px !important}
.ag-voice-name{
  display:block !important;
  margin-top:10px !important;
  color:#315743 !important;
  font-family:"Baloo 2",sans-serif !important;
  font-size:15px !important;
  line-height:1.3 !important;
  font-weight:800 !important;
  font-style:italic !important;
  opacity:1 !important;
  visibility:visible !important;
}
@media(max-width:1050px){
  .ag-groups-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
}
@media(max-width:700px){
  .ag-groups-grid{grid-template-columns:1fr !important}
}
/* =========================================================
   INSCRIERE - 4 GRUPE PE ACELASI RAND
========================================================= */

.ag-enroll-groups-grid{
    display:grid !important;
    grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
    gap:20px !important;
}

/* Tableta */
@media (max-width:1000px){
    .ag-enroll-groups-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Mobil */
@media (max-width:600px){
    .ag-enroll-groups-grid{
        grid-template-columns:1fr !important;
    }
}


/* =========================================================
   ASOCIATIA - MEMBRII ONORIFICI / MEDALII AURII
   ========================================================= */
.ag-association-honorary{
  position:relative;
  z-index:3;
  padding:62px 0 46px;
  background:#fff;
}
.ag-association-honorary-head{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}
.ag-association-honorary-head h2{
  margin:8px 0 12px;
  font-family:"Baloo 2",sans-serif;
  font-size:clamp(38px,4.2vw,56px);
  line-height:1.04;
  color:#315743;
}
.ag-association-honorary-head h2 span{color:#62c66f}
.ag-association-honorary-head p{
  max-width:650px;
  margin:0 auto;
  color:#71847a;
  font-size:16px;
  line-height:1.7;
}
.ag-honorary-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:flex-start;
  gap:42px 34px;
}
.ag-honorary-member{
  flex:0 0 245px;
  text-align:center;
  transition:transform .25s ease;
}
.ag-honorary-member:hover{transform:translateY(-6px)}

/* Medalia completa */
.ag-honorary-medal{
  position:relative;
  width:220px;
  height:245px;
  margin:0 auto;
  filter:drop-shadow(0 18px 18px rgba(117,77,9,.18));
}

/* Soarele / zimtii aurii din spatele medaliei */
.ag-honorary-burst{
  position:absolute;
  z-index:1;
  left:50%;
  top:3px;
  width:178px;
  height:178px;
  transform:translateX(-50%) rotate(7deg);
  background:linear-gradient(145deg,#ffe58b 0%,#e8b84a 48%,#c88b20 100%);
  clip-path:polygon(50% 0%,58% 10%,68% 3%,73% 15%,85% 11%,86% 24%,99% 25%,93% 37%,100% 45%,90% 52%,97% 63%,84% 66%,84% 79%,71% 76%,66% 90%,56% 82%,48% 100%,40% 84%,29% 92%,25% 78%,12% 82%,13% 68%,0 64%,8% 53%,0 45%,10% 37%,3% 25%,16% 23%,16% 10%,29% 14%,35% 2%,44% 10%);
}

/* Inelul gros */
.ag-honorary-medal-ring{
  position:absolute;
  z-index:3;
  left:50%;
  top:25px;
  width:154px;
  height:154px;
  transform:translateX(-50%);
  display:grid;
  place-items:center;
  padding:11px;
  border-radius:50%;
  background:linear-gradient(135deg,#fff0a4 0%,#f4ce64 24%,#c98c20 57%,#f7d86f 78%,#b97917 100%);
  box-shadow:inset 0 2px 4px rgba(255,255,255,.75),inset 0 -4px 7px rgba(112,68,7,.25),0 8px 18px rgba(116,75,9,.20);
}
.ag-honorary-medal-ring:before{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:50%;
  border:3px solid rgba(113,70,8,.24);
  box-shadow:inset 0 0 0 3px rgba(255,244,174,.38);
}

/* Fata medaliei */
.ag-honorary-medal-face{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  padding:20px 15px 24px;
  overflow:hidden;
  border-radius:50%;
  background:linear-gradient(120deg,#c98d20 0%,#f6d36f 31%,#ffe28a 48%,#d59a2d 72%,#f2c95d 100%);
  border:2px solid rgba(255,242,170,.72);
  box-shadow:inset 0 0 0 4px rgba(139,88,10,.12),inset 0 -12px 22px rgba(116,70,5,.10);
}
.ag-honorary-medal-face:before{
  content:"";
  position:absolute;
  width:58px;
  height:180px;
  left:15px;
  top:-35px;
  transform:rotate(27deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
}
.ag-honorary-star{
  position:relative;
  z-index:2;
  display:block;
  color:#fff3b0;
  font-size:27px;
  line-height:1;
  text-shadow:0 2px 2px rgba(117,70,6,.28);
}
.ag-honorary-name{
  position:relative;
  z-index:2;
  display:block;
  max-width:112px;
  color:#5f410b;
  font-family:"Baloo 2",sans-serif;
  font-size:16px;
  font-weight:800;
  line-height:1.08;
  text-align:center;
  text-shadow:0 1px 0 rgba(255,242,174,.55);
}

/* Panglica aurie din fata */
.ag-honorary-banner{
  position:absolute;
  z-index:5;
  left:50%;
  top:155px;
  width:210px;
  height:61px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,#b77b18 0%,#d9a636 18%,#ffe477 50%,#d49b2c 82%,#ad7012 100%);
  clip-path:polygon(0 14%,25% 22%,28% 0,72% 0,75% 22%,100% 14%,89% 50%,100% 87%,74% 78%,72% 100%,28% 100%,26% 78%,0 88%,11% 50%);
  box-shadow:0 7px 11px rgba(101,62,6,.17);
}
.ag-honorary-banner:before{
  content:"MEMBRU ONORIFIC";
  position:absolute;
  left:50%;
  top:17px;
  transform:translateX(-50%);
  width:130px;
  color:#69470b;
  font-family:"Nunito",sans-serif;
  font-size:8px;
  font-weight:900;
  line-height:1;
  letter-spacing:.11em;
  text-align:center;
  text-transform:uppercase;
  text-shadow:0 1px rgba(255,244,180,.55);
}
.ag-honorary-member:hover .ag-honorary-medal{
  filter:drop-shadow(0 22px 22px rgba(117,77,9,.24)) brightness(1.025);
}

@media(max-width:720px){
  .ag-association-honorary{padding:48px 0 32px}
  .ag-association-honorary-head{margin-bottom:30px}
  .ag-honorary-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px 8px}
  .ag-honorary-member{min-width:0}
  .ag-honorary-medal{width:175px;height:205px;transform:scale(.88);transform-origin:top center;margin-bottom:-22px}
}
@media(max-width:390px){
  .ag-honorary-medal{transform:scale(.78);margin-left:50%;translate:-50% 0;margin-bottom:-42px}
}


/* =========================================================
   ASOCIATIA - PANOU DE ONOARE / LAYOUT FINAL
   ========================================================= */
.ag-association-honorary{
  position:relative;
  z-index:3;
  padding:46px 0 34px;
  background:#fff;
}

.ag-honorary-layout{
  display:grid;
  grid-template-columns:minmax(280px, .72fr) minmax(520px, 1.28fr);
  align-items:center;
  gap:56px;
  min-height:270px;
}

.ag-association-honorary-head{
  max-width:390px;
  margin:0;
  text-align:left;
}
.ag-association-honorary-head .ag-section-kicker{
  display:inline-block;
  margin:0 0 9px;
}
.ag-association-honorary-head h2{
  margin:0 0 12px;
  font-family:"Baloo 2",sans-serif;
  font-size:clamp(31px,2.6vw,42px);
  line-height:1.02;
  letter-spacing:-.025em;
  color:#315743;
}
.ag-association-honorary-head h2 span{
  display:inline;
  color:#62c66f;
}
.ag-association-honorary-head p{
  max-width:370px;
  margin:0;
  color:#71847a;
  font-size:15px;
  line-height:1.55;
}

.ag-honorary-grid{
  display:grid;
  grid-template-columns:repeat(3, 220px);
  justify-content:center;
  align-items:center;
  gap:20px 16px;
  width:100%;
}
.ag-honorary-member{
  width:220px;
  min-width:0;
  margin:0;
  text-align:center;
}
.ag-honorary-medal{
  position:relative;
  width:220px;
  height:225px;
  margin:0 auto;
  filter:drop-shadow(0 15px 15px rgba(117,77,9,.16));
  transition:transform .25s ease,filter .25s ease;
}
.ag-honorary-member:hover .ag-honorary-medal{
  transform:translateY(-5px);
  filter:drop-shadow(0 20px 19px rgba(117,77,9,.21)) brightness(1.02);
}

/* apropiem urmatoarea sectiune */
.ag-association-pillars{
  padding-top:34px;
}

@media(max-width:1100px){
  .ag-honorary-layout{
    grid-template-columns:minmax(250px,.7fr) minmax(420px,1.3fr);
    gap:35px;
  }
  .ag-honorary-grid{
    grid-template-columns:repeat(2,220px);
  }
}

@media(max-width:820px){
  .ag-association-honorary{padding:42px 0 30px}
  .ag-honorary-layout{
    grid-template-columns:1fr;
    gap:24px;
    min-height:0;
  }
  .ag-association-honorary-head{
    max-width:620px;
    margin:0 auto;
    text-align:center;
  }
  .ag-association-honorary-head p{margin:0 auto}
  .ag-honorary-grid{
    grid-template-columns:repeat(2,190px);
    gap:15px 8px;
  }
  .ag-honorary-member{width:190px}
  .ag-honorary-medal{
    transform:scale(.86);
    transform-origin:top center;
    margin-bottom:-30px;
  }
  .ag-honorary-member:hover .ag-honorary-medal{transform:scale(.86) translateY(-4px)}
}

@media(max-width:460px){
  .ag-association-honorary{padding:36px 0 24px}
  .ag-association-honorary-head h2{font-size:31px}
  .ag-honorary-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px 0;
  }
  .ag-honorary-member{width:100%}
  .ag-honorary-medal{
    transform:scale(.70);
    transform-origin:top center;
    margin-left:50%;
    translate:-50% 0;
    margin-bottom:-62px;
  }
  .ag-honorary-member:hover .ag-honorary-medal{transform:scale(.70) translateY(-3px)}
  .ag-association-pillars{padding-top:28px}
}
/* =========================================================
   ECHIPA - CROP FOTO DE SUS IN JOS
   ========================================================= */

/* Director */
.ag-director-photo img,

/* Educatoare */
.ag-educator-photo img,

/* Asistenta medicala */
.ag-medical-photo img,

/* Ingrijitoare + Bucatarese */
.ag-support-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* IMPORTANT:
       crop-ul porneste din partea de sus a fotografiei */
    object-position: center top;
}
/* =========================================================
   ECHIPA AGRICOLA - INCADRARE FOTO FINAL
   ========================================================= */

/*
 * Fotografiile echipei sunt in general portrete aproape patrate.
 * Nu taiem agresiv fotografia pe verticala.
 * Pastram fata + umerii + o parte din bust.
 */


/* ---------------------------------------------------------
   DIRECTOR
   --------------------------------------------------------- */

.ag-director-photo{
    position:relative;
    overflow:hidden;
}

.ag-director-photo img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 12%;
}


/* ---------------------------------------------------------
   EDUCATOARE
   --------------------------------------------------------- */

.ag-educator-photo{
    position:relative;
    width:100%;

    /* era 165px - prea putin pentru fotografiile portret */
    height:250px;
    min-height:250px;

    overflow:hidden;
    background:#edf7ef;
}

.ag-educator-photo img{
    display:block;
    width:100%;
    height:100%;

    /*
     * Cover pastreaza cardurile uniforme.
     * 15% muta crop-ul spre partea superioara,
     * astfel incat fata sa ramana vizibila.
     */
    object-fit:cover;
    object-position:center 15%;
}


/* Placeholder */
.ag-educator-photo .ag-team-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:58px !important;
}


/* ---------------------------------------------------------
   ASISTENTA MEDICALA
   --------------------------------------------------------- */

.ag-medical-photo{
    position:relative;
    overflow:hidden;
}

.ag-medical-photo img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 12%;
}


/* ---------------------------------------------------------
   INGRIJITOARE + BUCATARESE
   --------------------------------------------------------- */

.ag-support-photo{
    position:relative;

    width:100%;

    /* putin mai mare decat varianta veche de 180px */
    height:220px;
    min-height:220px;

    overflow:hidden;
    border-radius:16px;
    background:#edf7ef;
}

.ag-support-photo img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;

    /*
     * Prioritizam fata.
     * Nu folosim center center deoarece la pozele patrate
     * poate taia partea superioara a capului.
     */
    object-position:center 12%;
}

.ag-support-photo .ag-team-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:54px !important;
}


/* =========================================================
   TABLETA
   ========================================================= */

@media(max-width:1050px){

    /*
     * CSS-ul original trecea educatoarele la doua coloane.
     * Fotografia devine mai lata, deci ii dam si mai multa
     * inaltime pentru a pastra proportia de portret.
     */

    .ag-educator-photo{
        height:330px;
        min-height:330px;
    }

    .ag-support-photo{
        height:285px;
        min-height:285px;
    }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media(max-width:650px){

    /*
     * Cardul ocupa aproape toata latimea.
     * Imaginea poate deveni mult mai inalta fara sa para
     * disproportionata.
     */

    .ag-educator-photo{
        height:390px;
        min-height:390px;
    }

    .ag-educator-photo img{
        object-position:center 12%;
    }


    .ag-support-photo{
        height:350px;
        min-height:350px;
    }

    .ag-support-photo img{
        object-position:center 10%;
    }


    /* Directorul ramane in layout-ul compact existent */
    .ag-director-photo img{
        object-position:center 10%;
    }


    /* Asistenta */
    .ag-medical-photo{
        height:260px;
        min-height:260px;
    }

    .ag-medical-photo img{
        object-position:center 10%;
    }

}


/* =========================================================
   TELEFOANE MICI
   ========================================================= */

@media(max-width:420px){

    .ag-educator-photo{
        height:350px;
        min-height:350px;
    }

    .ag-support-photo{
        height:320px;
        min-height:320px;
    }

}
/* =========================================================
   EDUCATOARE - CARDURI CU ACEEASI INALTIME
   Rezervam 3 randuri pentru motto
   ========================================================= */

.ag-educator-grid{
    align-items:stretch;
}

.ag-educator-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

/* fotografia ramane identica pe toate cardurile */
.ag-educator-photo{
    flex:0 0 250px;
    height:250px;
    min-height:250px;
}

/* zona de continut ocupa restul cardului */
.ag-educator-body{
    display:flex;
    flex-direction:column;
    flex:1;
}

/* numele poate ocupa maximum 2 randuri,
   dar rezervam acelasi spatiu pentru toate */
.ag-educator-body h3{
    min-height:2.25em;
    margin-bottom:8px;
}

/* rezervam EXACT spatiul necesar pentru 3 randuri */
.ag-educator-motto{
    line-height:1.45;
    min-height:4.35em;
    margin-bottom:0;
}

/* daca exista si descriere */
.ag-educator-body p{
    margin-top:10px;
}


/* TABLETA */
@media(max-width:1050px){

    .ag-educator-photo{
        flex-basis:330px;
        height:330px;
        min-height:330px;
    }

}


/* MOBIL */
@media(max-width:650px){

    .ag-educator-photo{
        flex-basis:390px;
        height:390px;
        min-height:390px;
    }

}


/* TELEFOANE MICI */
@media(max-width:420px){

    .ag-educator-photo{
        flex-basis:350px;
        height:350px;
        min-height:350px;
    }

}


/* =========================================================
   EVENIMENT HERO - POZITIE DIFERITA DOAR PE MOBIL
   Forma/stilul .ag-next-event ramane neschimbat.
   ========================================================= */

.ag-next-event-mobile{
  display:none !important;
}

@media(max-width:560px){
  .ag-next-event-desktop{
    display:none !important;
  }

  .ag-next-event-mobile{
    display:inline-flex !important;
  }
}
/* =========================================================
   HERO MOBILE - DECOR FARA SUPRAPUNERE CU TITLUL
   ========================================================= */

@media (max-width: 560px){

    /*
     * Soarele ramane vizibil, dar il mutam in coltul
     * din dreapta sus, deasupra zonei ocupate de titlu.
     */
    .ag-home .ag-hero-sun{
        width: 82px;
        height: 82px;
        top: 72px;
        right: -18px;
        opacity: .95;
        z-index: 1;
    }

    /*
     * Norul din stanga ramane sus, ca element decorativ.
     * Nu mai intra in primul rand al titlului.
     */
    .ag-home .ag-hero-cloud-1{
        top: 105px;
        left: -28px;
        transform: scale(.52);
        opacity: .78;
    }

    /*
     * Norul central il mutam spre dreapta sus.
     */
    .ag-home .ag-hero-cloud-2{
        top: 92px;
        right: 13%;
        transform: scale(.38);
        opacity: .72;
    }

    /*
     * Norul 3 il coboram intre zona textului si ilustratie,
     * unde exista spatiu liber.
     */
    .ag-home .ag-hero-cloud-3{
        top: 390px;
        right: -20px;
        transform: scale(.38);
        opacity: .72;
    }

    /*
     * Textul ramane deasupra decoratiunilor.
     */
    .ag-home .ag-home-hero-content{
        position: relative;
        z-index: 4;
    }

    .ag-home .ag-home-hero-title{
        position: relative;
        z-index: 4;
    }

    .ag-home .ag-next-event{
        position: relative;
        z-index: 4;
    }
}
/* EVENIMENT SUB TITLU - SPATIERE CORECTA */
.ag-home-hero-content .ag-next-event{
    margin-top: 12px;
    margin-bottom: 0;
}

.ag-home-hero-content .ag-next-event + .ag-home-hero-description{
    margin-top: 22px;
}
/* =========================================================
   HERO MOBILE - SOARE + NORI DEASUPRA TITLULUI
   ========================================================= */

@media (max-width: 560px) {

    /* Soarele - sus dreapta */
    .ag-home .ag-hero-sun {
        width: 82px !important;
        height: 82px !important;
        top: 28px !important;
        right: -14px !important;
        opacity: .95;
        z-index: 1;
    }

    /* Norul din stanga - sus */
    .ag-home .ag-hero-cloud-1 {
        top: 48px !important;
        left: -22px !important;
        transform: scale(.48) !important;
        opacity: .80;
        z-index: 1;
    }

    /* Norul de sus - intre centru si dreapta */
    .ag-home .ag-hero-cloud-2 {
        top: 22px !important;
        right: 27% !important;
        transform: scale(.34) !important;
        opacity: .75;
        z-index: 1;
    }

    /* Norul din dreapta */
    .ag-home .ag-hero-cloud-3 {
        top: 100px !important;
        right: -28px !important;
        transform: scale(.34) !important;
        opacity: .72;
        z-index: 1;
    }

    /* Continutul ramane intotdeauna peste decor */
    .ag-home .ag-home-hero-content {
        position: relative;
        z-index: 5;
    }

    .ag-home .ag-home-hero-title,
    .ag-home .ag-next-event,
    .ag-home .ag-home-hero-description,
    .ag-home .ag-home-hero-actions {
        position: relative;
        z-index: 5;
    }
}
/* =========================================================
   DIRECTOR + ASISTENTA
   Card identic 1:1 cu educatoarele, dar centrat
   ========================================================= */

/* DESKTOP - educatoarele sunt 4 pe rand */
.ag-single-team-grid{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:22px 18px !important;
    width:100% !important;
    align-items:stretch !important;
}

/*
 * Punem cardul pe coloana 2, apoi il deplasam cu
 * jumatate din latimea lui + jumatate din gap.
 * Astfel ajunge EXACT in centrul randului,
 * pastrandu-si dimensiunea unei singure coloane.
 */
.ag-single-team-grid > .ag-educator-card{
    grid-column:2 !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;

    transform:translateX(calc(50% + 9px));
}


/* Hover - pastram miscarea cardurilor normale,
   dar fara sa pierdem centrarea */
.ag-single-team-grid > .ag-educator-card:hover{
    transform:translateX(calc(50% + 9px)) translateY(-4px);
}


/* =========================================================
   TABLETA
   Educatoarele tale devin 2 pe rand sub 1050px
   ========================================================= */

@media(max-width:1050px){

    .ag-single-team-grid{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:22px 18px !important;
    }

    .ag-single-team-grid > .ag-educator-card{
        grid-column:1 !important;
        transform:translateX(calc(50% + 9px));
    }

    .ag-single-team-grid > .ag-educator-card:hover{
        transform:translateX(calc(50% + 9px)) translateY(-4px);
    }
}


/* =========================================================
   MOBIL
   Educatoarele tale devin 1 pe rand
   ========================================================= */

@media(max-width:650px){

    .ag-single-team-grid{
        grid-template-columns:1fr !important;
        gap:18px !important;
    }

    .ag-single-team-grid > .ag-educator-card{
        grid-column:1 !important;
        width:100% !important;
        max-width:410px !important;
        margin:0 auto !important;
        transform:none !important;
    }

    .ag-single-team-grid > .ag-educator-card:hover{
        transform:translateY(-4px) !important;
    }
}
/* ==========================
   COVER ACTIVITATE
========================== */

.ag-activity-cover {
    position: relative;
    z-index: 5;

    max-width: 1050px;

    /* îl urcăm peste Hero */
    margin: -55px auto 30px;
}

.ag-activity-cover img {
    display: block;
    width: 100%;
    height: 440px;

    object-fit: cover;
    object-position: center;

    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}


/* MOBILE */
@media (max-width: 768px) {

    .ag-activity-cover {
        width: calc(100% - 32px);
        margin: -30px auto 24px;
    }

    .ag-activity-cover img {
        height: 300px;
        border-radius: 18px;
    }
}